Anthropic
anthropic/Docs / Catalog
Every model ID identifies both the upstream provider and that provider's model. The live catalog is embedded in the running gateway.
Use the exact provider/model form. The provider prefix selects an adapter and credential. The rest of the ID is sent to that provider.
Provider prefixes are lowercase and case-sensitive. Empty path segments are invalid. A well-formed ID must also exist in the embedded catalog. If any entry in a models fallback array is unknown, LaneZero rejects the whole request before contacting a provider.
The same prefixes are used in model IDs, named passthrough headers such as x-provider-key-openai, and provider-key management routes.
anthropic/openai/google/xai/deepseek/qwen/moonshot/zai/minimax/tencent/mistral/meta/The running server exposes its accepted model IDs at GET /v1/models. The result is sorted by ID. Each item includes id, object: "model", and the provider prefix in owned_by.
The live route requires a gateway bearer key, including when opened in a browser. Use the command below when the browser request returns 401.
curl "$RACEWAY_URL/v1/models" \
-H "Authorization: Bearer $RACEWAY_KEY"
The endpoint lists catalog membership only. It does not expose price, context-window, output-limit, or tool-support metadata.
The catalog is seeded from LiteLLM's public model_prices_and_context_window.json pricing dataset, used under its MIT license. LaneZero attributes that source in the catalog loader and project notices. Z.ai and Tencent entries are locally curated from their public price tables because the embedded LiteLLM data does not supply those mappings.
When a provider reports token usage and the catalog has both input and output prices, LaneZero calculates:
est_cost_usd is analytics. It is not an invoice, charge, or billed amount. Provider pricing and billing rules remain authoritative.
The stored estimate is null when usage is unavailable or either catalog price is unavailable. Usage summaries treat missing estimates as zero.
LaneZero never bills for model use. Advisory spend caps compare the current month's accumulated estimates with a configured cap. They do not stop requests.