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.

MethodPathDescription
GET/v1/pingLiveness probe, no auth; JSON includes timestamp, etc.
GET/v1/modelsList ProviderModels visible to the tenant (code, etc.).
GET/v1/models/countCount under the same filters as GET /v1/models; query behavior (e.g. whether output_modalities affects count) follows the README.
GET/v1/providersEnabled provider summary related to visible models (subset shape aligned with upstream).
POST/v1/chat/completionsChat Completions, streaming (SSE) or non-streaming JSON.
GET/v1/filesFile list (e.g. limit).
POST/v1/filesmultipart upload (file, purpose, etc.).
GET/v1/files/:idMetadata for a file.
GET/v1/files/:id/contentBinary file content.
DELETE/v1/files/:idDelete file object.

Further reading (Chat)

Back to docs home