Overview
Anannas provides access to models from multiple providers through a unified API. Models are identified byprovider/model-name format.
Model Endpoint
Query available models:Response Format
Model Object Schema
| Field | Type | Description |
|---|---|---|
id | string | Model identifier (e.g., openai/gpt-5-mini) |
name | string | Human-readable name |
provider | string | Provider identifier (openai, anthropic, etc.) |
description | string | Model description |
context_length | number | Maximum context window in tokens |
pricing | object | Cost structure (see below) |
capabilities | string[] | Supported features |
Pricing Object
Model Format
Models use the formatprovider/model-name:
openai/gpt-5-miniopenai/gpt-3.5-turboanthropic/claude-3-sonnetanthropic/claude-3-opusx-ai/grok-betagroq/llama-3-70b
Capabilities
View Model Capabilities
For complete capability listings by model, visit anannas.ai/models to see which features each model supports.
text: Text generationtool_calling: Function/tool executionjson_mode: Structured JSON outputstreaming: Server-Sent Eventsmultimodal: Image/audio inputsreasoning: Extended reasoning (o1, o3, etc.)audio_output: Audio generationimage_output: Image generation
Provider-Specific Models
View All Models
For complete, up-to-date model listings, pricing, capabilities, and parameter support, visit anannas.ai/models.
OpenAI
openai/gpt-5-miniopenai/gpt-4-turboopenai/gpt-3.5-turboopenai/o1-previewopenai/o1-miniopenai/o3-mini
Anthropic
anthropic/claude-3-opusanthropic/claude-3-sonnetanthropic/claude-3-haikuanthropic/claude-sonnet-4-5
xAI (Grok)
x-ai/grok-betax-ai/grok-2
Other Providers
Models from Groq, TogetherAI, DeepInfra, Fireworks, Nebius, and others are available. Query/v1/models for the complete list.
Model Selection
Default Model
Ifmodel is omitted, Anannas uses your account’s default model. Set defaults in the dashboard.
Model Routing
Useprovider preferences to control model selection:
Fallbacks
Specify fallback models:Parameter Support
Check Parameter Support
For detailed parameter support by model, visit anannas.ai/models to see which parameters each model supports.
- Temperature: Most models
- Top P: Most models
- Max Tokens: All models
- Tool Calling: OpenAI, Anthropic (Claude 3+)
- JSON Mode: OpenAI GPT-5 Mini, Claude 3+
- Streaming: All models
- Reasoning: o1, o3, Claude Sonnet 4.5
Context Windows
View Context Windows
For accurate context window sizes for all models, check anannas.ai/models.
- GPT-5 Mini: 128,000 tokens
- GPT-4 Turbo: 128,000 tokens
- Claude 3 Opus: 200,000 tokens
- Claude 3 Sonnet: 200,000 tokens
- o1: 128,000 tokens
Rate Limits
Rate limits are tier-based and vary by model. Check your tier in the dashboard. Limits apply per API key.Pricing
View Current Pricing
For up-to-date pricing for all models, visit anannas.ai/models. Pricing is updated in real-time.
/v1/models endpoint for current rates. Prices are in USD.
Example pricing (approximate):
- GPT-5 Mini: 0.002/1K output
- GPT-3.5 Turbo: 0.002/1K output
- Claude 3 Sonnet: 0.015/1K output
Model Updates
Models are updated automatically. Model identifiers remain stable, but underlying model versions may change. Check model descriptions for version information.Deprecated Models
Deprecated models continue to work but may be removed in future versions. Migrate to supported alternatives.See Also
- API Overview - Request format
- Parameters - Parameter support
- Quickstart - Getting started