Models
View all available AI models and their pricing information.
Get Available Models List API
Endpoint
GET https://aiapi.services/v1/modelsDescription
Get the list of AI models accessible to the current user, grouped by channel.
Authentication
Include Bearer Token in request header:
Authorization: Bearer YOUR_API_KEYCode Examples
cURL
curl -X GET https://aiapi.services/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"Response Format
Success Response
{
"success": true,
"data": [
{
"id": "gemini-2.5-flash",
"object": "model",
"created": 1626777600,
"owned_by": "custom",
"supported_endpoint_types": ["gemini", "openai"]
},
{
"id": "claude-sonnet-4-5",
"object": "model",
"created": 1626777600,
"owned_by": "custom",
"supported_endpoint_types": ["gemini", "openai"]
}
]
}Error Response
{
"success": false,
"message": "Unauthorized access"
}Field Descriptions
| Field | Type | Description |
|---|---|---|
success | boolean | Whether the request was successful |
data | array | Array of model objects |
data[].id | string | Model identifier |
data[].object | string | Object type, fixed as “model” |
data[].created | integer | Creation timestamp |
data[].owned_by | string | Model owner (custom/vertex-ai) |
data[].supported_endpoint_types | array | Supported endpoint types |
Chat Models
Anthropic Claude
- claude-sonnet-4-5 / claude-sonnet-4-5@20250929 - Latest Claude Sonnet 4.5, flagship balanced model for performance and efficiency
- claude-sonnet-4 / claude-sonnet-4-20250514 - Claude Sonnet 4th generation, high-performance conversational model
- claude-opus-4-1 / claude-opus-4-1@20250805 - Claude Opus 4.1, most powerful reasoning and analysis capabilities
- claude-opus-4 - Claude Opus 4 base version, top-tier performance conversational model
- claude-3-7-sonnet - Claude 3.7 Sonnet, enhanced version of 3rd generation series
- claude-3-5-haiku@20241022 - Claude 3.5 Haiku, fast-response lightweight model
- claude-3-haiku@20240307 - Claude 3 Haiku base version, efficient low-latency model
Google Gemini
- gemini-2.5-pro - Gemini 2.5 Pro, most powerful multimodal conversational model
- gemini-2.5-flash - Gemini 2.5 Flash, fast-response efficient model
- gemini-2.5-flash-image-preview - Gemini 2.5 Flash image preview, supports image understanding
- gemini-2.5-flash-lite - Gemini 2.5 Flash Lite, faster inference speed
- gemini-2.0-flash - Gemini 2.0 Flash, balanced multimodal model
- gemini-2.0-flash-lite - Gemini 2.0 Flash Lite, optimized latency and cost
DeepSeek
- deepseek-ai/deepseek-r1-0528-maas - DeepSeek R1 reasoning-enhanced model, focused on complex reasoning tasks
Image Generation Models
Imagen 4.0 Series
- imagen-4.0-ultra-generate-001 - Imagen 4.0 Ultra, highest quality image generation
- imagen-4.0-generate-001 - Imagen 4.0 standard version, high-quality image generation
- imagen-4.0-fast-generate-001 - Imagen 4.0 fast version, optimized generation speed
Imagen 3.0 Series
- imagen-3.0-generate-002 - Imagen 3.0 standard version (v2), mature and stable image generation
- imagen-3.0-fast-generate-001 - Imagen 3.0 fast version, rapid image generation
Video Generation Models
Veo 3.0 Series
- veo-3.0-generate-001 - Veo 3.0 standard version, latest generation video generation model
- veo-3.0-fast-generate-001 - Veo 3.0 fast version, optimized generation speed
Veo 2.0 Series
- veo-2.0-generate-001 - Veo 2.0 version, mature video generation technology
Audio/Music Models
Music Generation
- lyria-002 - Lyria 2nd generation, AI music composition and generation model
Text-to-Speech (TTS)
- text-to-speech-multilingual - Multilingual TTS, natural speech synthesis supporting multiple languages
- text-to-speech-neural - Neural TTS, high-quality natural speech synthesis
- text-to-speech-001 - Standard TTS model, basic text-to-speech functionality
- text-to-speech-standard - Standard TTS version, stable speech synthesis service
Embedding Models
- text-embedding-004 - 4th generation text embedding model for semantic search and vector representation
For detailed pricing information, please visit aiapi.services
Last updated on