Gateway HTTP routes (summary)
Common v1 routes at method / path / purpose level. Query parameters, request bodies, pagination, and error codes are defined in the HTTP service README shipped with your deployment.
| Method | Path | Description |
|---|---|---|
| GET | /v1/ping | Liveness probe, no auth; JSON includes timestamp, etc. |
| GET | /v1/models | List ProviderModels visible to the tenant (code, etc.). |
| GET | /v1/models/count | Count under the same filters as GET /v1/models; query behavior (e.g. whether output_modalities affects count) follows the README. |
| GET | /v1/providers | Enabled provider summary related to visible models (subset shape aligned with upstream). |
| POST | /v1/chat/completions | Chat Completions, streaming (SSE) or non-streaming JSON. |
| GET | /v1/files | File list (e.g. limit). |
| POST | /v1/files | multipart upload (file, purpose, etc.). |
| GET | /v1/files/:id | Metadata for a file. |
| GET | /v1/files/:id/content | Binary file content. |
| DELETE | /v1/files/:id | Delete file object. |