Browse all models
The complete model catalog. Copy a model id to use it from the SDK or any drop-in client.
openai/gpt-5.5, anthropic/claude-sonnet-4-6, gemini/gemini-2.5-pro) from any SDK. See Drop-in SDKs.
Multimodal models
Beyond text, the catalog includes models that accept images, audio, and video, and models that generate images, speech, and video. Filter the catalog by capability —vision, audio, video, image gen — to see what each model supports.
For the modality-specific endpoints, a discovery call returns the usable models and their capabilities at runtime, so you don’t have to hardcode a list:
| Endpoint | Models for |
|---|---|
GET /v3/images/models | Image generation (POST /v3/images) |
GET /v3/audio/models | Speech & transcription (POST /v3/audio/speech, /v3/audio/transcriptions) |
GET /v3/videos/models | Video generation (POST /v3/videos) |
Aliases and backup chains
An alias is a stable name you define in the platform that maps to an ordered list of models — a primary plus fallbacks. Call the alias name like any other model, and the gateway tries the first model in the list, falling through to the next if one is unavailable or errors. That ordered list is the backup chain.- Resilience. If the primary provider is down or rate-limited, the call automatically continues down the chain instead of failing.
- Swap models without touching code. Point your app at
production/main, then reorder or repoint the chain in the platform — no deploy.
What’s next
Custom models
Register your own model deployments and API keys, plus aliases.
Integrations
Use Opper as the provider for your editor, agent, or CLI.