Zora GPT 5.5
gpt-5.5Frontier Zora route for complex coding, research, and production work.
Hard coding tasks, large refactors, technical research, long context analysis.
Model catalog
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.
Paid-plan image models for OpenAI-compatible image generation.
| Model ID | Endpoint | Description | Copy |
|---|---|---|---|
gpt-img-2 | /v1/images/generations | GPT image route for OpenAI-compatible image generation. |
Additional chat models available through Chat Completions and Anthropic Messages.
| Model ID | Endpoint | Description | Copy |
|---|---|---|---|
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. |
Use the base model ID or one of the explicit reasoning mode IDs.
gpt-5.5Frontier Zora route for complex coding, research, and production work.
Hard coding tasks, large refactors, technical research, long context analysis.
gpt-5.4Strong everyday coding model with reliable reasoning and implementation quality.
Feature work, bug fixing, code review, documentation, daily engineering tasks.
gpt-5.4-miniSmaller, faster route for lighter implementation and iteration loops.
Short scripts, small fixes, quick explanations, low-latency assistant flows.
gpt-5.3-codexCoding-optimized route for agentic development and repository work.
Codex-style coding, tests, refactors, repo exploration, tool-heavy workflows.
gpt-5.2Stable professional route for longer-running work and mixed assistant tasks.
Long-running agents, production support, planning, writing, analysis.
Paid-plan audio models for transcription and translation uploads.
| Model ID | Endpoint | Description | Copy |
|---|---|---|---|
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. |
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"
}'