Priced text model catalog

GET/cabinet/api/public/models

The live list of text models and their per-1M-token prices. No key.

Responses

Response

[
  {
    "model": "gpt-5.6-sol",
    "input_per_1m": …,
    "output_per_1m": …,
    "cache_per_1m": …,
    "cache_write_mult": …
  }
]
Details

No key needed: this endpoint answers without authentication.

This is the only public source of text prices. They live in the database and an admin changes them without a deploy — so any price written into a document goes stale silently. Hence: the fields are described here, the numbers are read from this endpoint.

The answer is an array, one entry per logical model, sorted by name. Fields: model — the model name, the same string the request's model field takes; input_per_1m — price of input tokens per 1M, in USD; output_per_1m — price of output tokens per 1M; cache_per_1m — price of a prompt-cache hit (zero means there is no separate tariff and cached input is billed as ordinary input); cache_write_mult — how much more than ordinary input a write to the prompt cache costs.

The selection matches the cabinet's: internal names and models an admin switched off are absent. One model may carry several tariffs internally; the one served is the tariff a default request is billed at.

Code examples
curl https://api.teamtoken.store/cabinet/api/public/models
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.