API documentation
Models
Model ids, availability, endpoints, and catalog behavior.
Use /v1/models or the public catalog as the source of truth for model ids, availability, supported endpoints, context, and visible pricing. /v1/models can be opened without a key; if you pass a key, token limits are applied to the list. Always copy the exact id.
List models
bash
curl https://api.aigate.shop/v1/modelsResponse
{ "object": "list", "data": [ { "id": "openai/gpt-5.5", "object": "model", "owned_by": "aigate" } ]}Model id examples
| Model id | Typical route |
|---|---|
| openai/gpt-5.5 | /v1/chat/completions or /v1/responses |
| anthropic/claude-opus-4.7 | /v1/chat/completions or /v1/messages |
| qwen/qwen3-embedding-8b | /v1/embeddings |
| openai/gpt-image-2 | /v1/images/generations |
| google/gemini-3.1-flash-image-preview | /v1/chat/completions with modalities |
| google/gemini-3-pro-image | /v1/chat/completions with modalities |
Availability
- If a model is missing from /v1/models, it is not available for that API key.
- If a visible model is temporarily unavailable, retry later or choose another model.
- Provider-specific parameters can be rejected. Remove optional fields first when debugging.