Model catalog

Chọn model theo route, gọi bằng cùng một API key.

Catalog này gom chat, coding, image và audio route trong một giao diện. Free tier dùng để test nhanh; gói trả phí và PAYG mở rộng theo nhu cầu thật.

36total routes
25Zora routes
8premium routes
3media routes
Public routesOpenAI-compatible model IDs

Zora Image routes

Paid-plan image models for OpenAI-compatible image generation.

Image
Model IDEndpointDescriptionCopy
gpt-img-2
/v1/images/generations
GPT image route for OpenAI-compatible image generation.

Premium chat routes

Additional chat models available through Chat Completions and Anthropic Messages.

Model IDEndpointDescriptionCopy
claude-sonnet-4.5
/v1/chat/completions
/v1/messages
7D+
Premium chat route for heavier coding and agent tasks.
claude-sonnet-4
/v1/chat/completions
/v1/messages
Paid
Premium chat route for general coding and assistant workloads.
claude-haiku-4.5
/v1/chat/completions
/v1/messages
Paid
Lower-cost premium route for fast lightweight tasks.
deepseek-3.2
/v1/chat/completions
/v1/messages
Paid
Premium chat route for coding and reasoning with lower credit cost.
minimax-m2.5
/v1/chat/completions
/v1/messages
Paid
Premium chat route for general chat and coding tasks.
minimax-m2.1
/v1/chat/completions
/v1/messages
Free
Low-credit premium route for simple requests.
glm-5
/v1/chat/completions
/v1/messages
Free
Premium chat route for general reasoning and coding.
qwen3-coder-next
/v1/chat/completions
/v1/messages
Free
Lowest-credit premium route for coding-oriented calls.

Zora GPT/Codex families

Use the base model ID or one of the explicit reasoning mode IDs.

low / medium / high / xhigh

Zora GPT 5.5

gpt-5.5
1M

Frontier Zora route for complex coding, research, and production work.

Hard coding tasks, large refactors, technical research, long context analysis.

Zora GPT 5.4

gpt-5.4
400K

Strong everyday coding model with reliable reasoning and implementation quality.

Feature work, bug fixing, code review, documentation, daily engineering tasks.

Zora GPT 5.4 Mini

gpt-5.4-mini
400K

Smaller, faster route for lighter implementation and iteration loops.

Short scripts, small fixes, quick explanations, low-latency assistant flows.

Zora GPT 5.3 Codex

gpt-5.3-codex
400K

Coding-optimized route for agentic development and repository work.

Codex-style coding, tests, refactors, repo exploration, tool-heavy workflows.

Zora GPT 5.2

gpt-5.2
400K

Stable professional route for longer-running work and mixed assistant tasks.

Long-running agents, production support, planning, writing, analysis.

Zora Audio routes

Paid-plan audio models for transcription and translation uploads.

Audio
Model IDEndpointDescriptionCopy
whisper-large-v3
/v1/audio/transcriptions
/v1/audio/translations
Zora audio route for high-accuracy speech-to-text and audio translation.
whisper-large-v3-turbo
/v1/audio/transcriptions
Faster Zora audio route for lower-latency speech-to-text workloads.

Request example

Free keys can call only the three free chat routes. Paid plans can call every route listed here.

curl https://api.zora.io.vn/v1/chat/completions \
  -H "Authorization: Bearer YOUR_ZORA_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.5-low",
    "messages": [{"role": "user", "content": "Hello Zora"}]
  }'
curl https://api.zora.io.vn/v1/chat/completions \
  -H "Authorization: Bearer YOUR_ZORA_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3-coder-next",
    "messages": [{"role": "user", "content": "Write a small JS function"}]
  }'
curl https://api.zora.io.vn/v1/audio/transcriptions \
  -H "Authorization: Bearer YOUR_ZORA_KEY" \
  -F file="@audio.mp3" \
  -F model="whisper-large-v3"
curl https://api.zora.io.vn/v1/images/generations \
  -H "Authorization: Bearer YOUR_ZORA_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-img-2",
    "prompt": "A clean product photo of a ceramic coffee cup",
    "size": "1024x1024"
  }'