List chat, embedding, and video models
Returns the catalog of chat, embedding, and video models available to your team. Shape mirrors OpenAI’s GET /v1/models envelope ({ object: "list", data: [...] }) so SDK clients that already speak OpenAI drop in unchanged. Platform-specific fields (capability tags, lifecycle pointers) live under aurous_metadata on each entry. Per-model pricing lives on top-level chat_pricing (chat models), embedding_pricing (embedding models), or video_pricing (video models) — the unused siblings are null. Video rates are a matrix in credits per million VIDEO tokens, keyed by output resolution and whether the request includes video input; listed video rates use standard (non-team) pricing. Customers can compute credits-per-1K by dividing the published credits_per_M value by 1000. When the catalog is empty the response is 200 with data: [] — never 404. No query, path, or body parameters are accepted.
Image and video rates are frozen per Aurous-Version: customers pinned to an older version see the rate card that was current when their version shipped, so price changes are never silently retroactive. Chat and embedding rates are NOT frozen per Aurous-Version — they track the most recently published rate version for each model, because LLM provider economics shift on weekly cadence. The receipt echoed on every chat / embedding response carries the exact rate that applied at dispatch time, so audit trails remain stable.
Authorizations
Your team API key (starts with al_live_).
Headers
Optional API version pin (YYYY-MM-DD). Defaults to your team's pinned version, or the system default 2026-07-16 for unauthenticated requests.
^\d{4}-\d{2}-\d{2}$"2026-07-16"
Response
List of available chat, embedding, and video models.

