List models
/v1/modelsThe list of logical models for the model field. No prices here — those live in the catalog.
Responses
Response
{
"object": "list",
"data": [
{ "id": "gpt-5.6-sol", "object": "model" },
{ "id": "gemini-3.1-pro", "object": "model" }
]
}Details
No key needed: this endpoint answers without authentication.
Returns what OpenAI's /v1/models returns: an object with a data list, each entry carrying an id — exactly the string to put in model. Other fields are passed through as-is, so more of the standard keys may show up.
A key is optional here: with no header at all the gateway asks the upstream with its own credential. A key you do send is forwarded as is, and the upstream's refusal comes back unchanged.
Two things are filtered out. First, the internal names the gateway uses to spread traffic across itself: they are not callable and are never shown. Second, models an admin switched off: they exist, but a request would not reach them, so they are not listed either. There are no prices here at all — for prices see GET /cabinet/api/public/models.