List Models
List the models currently callable with the authenticated platform key.
GET /v1/models
Returns the current callable model catalog in an OpenAI-compatible list shape. Authentication is required.
curl "http://127.0.0.1:11113/v1/models" -H "Authorization: Bearer $API_KEY"Response
{
"object": "list",
"data": [
{
"id": "openai/gpt-5.2",
"object": "model",
"created": 1767225600,
"owned_by": "openai"
}
]
}| Field | Type | Description |
|---|---|---|
object | string | Always list. |
data | array | Models enabled and callable in the current gateway snapshot. |
data[].id | string | Complete public model ID to send to inference endpoints. |
data[].object | string | Always model. |
data[].created | integer | Model creation timestamp in Unix seconds. |
data[].owned_by | string | Manufacturer slug, derived from the public ID prefix. |
The endpoint is not paginated. It intentionally exposes only protocol-neutral identity fields; capability, context, and current pricing details remain on the Models page.
Catalog changes
Models can be enabled, disabled, or repriced without a client release. Resolve model IDs from this endpoint or the Models page instead of maintaining a permanent static list.
Help us improve this page
Found something unclear, outdated, or incorrect?
Last updated on