List models

GET/v1/models

The 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.

Code examples
curl https://api.teamtoken.store/v1/models \
  -H "Authorization: Bearer sk-…"
Request
https://api.teamtoken.store/v1

The panel calls this domain; in your own code use the address above.

This endpoint takes no parameters.

This request really goes out, but the call itself costs nothing: reading a balance, a catalog or a job's status is not billed.

Response

Press “Send request” above and the answer shows up here.