Confirm capability firstAvailable models change with your API key group, model restrictions, and live service state. The whole-site Model Marketplace is not a promise that every model is callable by a particular key.
Three required values
For a standard OpenAI-style client, use:
Authorization:
/v1, while Codex CLI uses its Provider configuration. Follow the relevant client tool guide.
List models visible to this key
data[].id. This is the set currently visible to that key, not a full platform catalog. If a response includes supported_endpoint_types, it can help identify the protocol type shown for the model.
Select the right protocol
The same model name does not mean every request format is accepted. Confirm the protocol in the API and model capability matrix, then read:
Minimal verification and retries
- List models, then send one short text request or minimum image request.
- Confirm the model ID, key group, and path before adding optional fields, streaming, or batch work.
- Keep the error text, time, and Request ID on failure. Do not replay an unconfirmed request at high frequency.
401, check the key first. For 404, check a missing or repeated /v1. For 400, check the model, protocol, and fields. See the self-check guide for more.