GPT 5.5
gpt-5.5Primary Zora-backed production chat model.
General chat, coding, technical writing, and production smoke tests.
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-image-2 | /v1/models | Image model ID published by Zora in the public model catalog. The production image generation API remains /v1/images/generations. |
Compatibility aliases are not part of the current public Zora model catalog.
| Model ID | Endpoint | Description | Copy |
|---|
Use the exact model IDs returned by /v1/models.
gpt-5.5Primary Zora-backed production chat model.
General chat, coding, technical writing, and production smoke tests.
gpt-5.4Zora-backed GPT route for high quality chat and coding work.
Coding, reasoning, and long-form assistant tasks.
gpt-5.4-miniLower-latency Zora-backed GPT route.
Fast chat completions, command helpers, and lightweight coding tasks.
gpt-5.3-codexCodex-oriented model ID published by Zora.
Agentic coding and repository work when supported by the upstream account.
gpt-5.2-codexCodex-oriented model ID published by Zora.
Coding assistant workflows and code review tasks.
gpt-5.2General GPT route published by Zora.
General assistant, analysis, and coding requests.
gpt-5.1-codex-maxHigh-capability Codex route published by Zora.
Harder coding and review workflows when supported upstream.
gpt-5.1-codex-miniLower-latency Codex route published by Zora.
Fast code edits, explanation, and lightweight agent tasks.
gpt-5-codexCodex model ID published by Zora.
Code generation, patches, and repository analysis.
gpt-5-codex-miniMini Codex model ID published by Zora.
Fast code assistant tasks.
gpt-5.3-codex-sparkSpark Codex model ID published by Zora.
Small coding tasks and quick agent responses.
codex-auto-reviewAuto-review model ID published by Zora.
Automated code review style workflows when supported upstream.
Paid-plan audio models for async speech, transcription, dubbing, sound effects, and voice tools.
| 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. | |
eleven_multilingual_v2 | /v1/audio/speech | Async text-to-speech route for multilingual voice generation with selected voice IDs. | |
eleven_v3 | /v1/audio/speech | Async text-to-speech route for expressive voice generation with inline audio tag control. | |
eleven_flash_v2_5 | /v1/audio/speech | Low-latency async text-to-speech route for conversational and interactive voice workloads. | |
eleven_turbo_v2_5 | /v1/audio/speech | Balanced async text-to-speech route for quality and latency sensitive voice generation. | |
eleven_multilingual_sts_v2 | /v1/audio/voice-changer | Async voice changer route for transforming uploaded speech into a target voice. | |
eleven_text_to_sound_v2 | /v1/audio/sound-effects | Async sound effect generation route for short prompt-based audio effects. |
Free keys can call only the model IDs marked Free. Paid plans and PAYG credit can call all published Zora GPT/Codex routes.
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",
"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": "gpt-5.4-mini",
"messages": [{"role": "user", "content": "Write a small JS function"}]
}'$body = @{
model = "gpt-5.5"
messages = @(@{ role = "user"; content = "Hello Zora" })
} | ConvertTo-Json -Depth 5
Invoke-WebRequest `
-Uri "https://api.zora.io.vn/v1/chat/completions" `
-Method POST `
-Headers @{ Authorization = "Bearer YOUR_ZORA_KEY" } `
-ContentType "application/json" `
-Body $bodycurl https://api.zora.io.vn/v1/audio/transcriptions \ -H "Authorization: Bearer YOUR_ZORA_KEY" \ -F file="@audio.mp3" \ -F tag_audio_events=true
curl https://api.zora.io.vn/v1/audio/speech \
-H "Authorization: Bearer YOUR_ZORA_KEY" \
-H "Content-Type: application/json" \
-d '{
"voice_id": "21m00Tcm4TlvDq8ikWAM",
"text": "The first move is what sets everything in motion.",
"model_id": "eleven_v3"
}'curl https://api.zora.io.vn/v1/images/jobs \
-H "Authorization: Bearer YOUR_ZORA_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: customer-image-001" \
-d '{
"model": "gpt-image-2",
"prompt": "Create a funny motion sticker variation",
"n": 1,
"size": "1024x1024",
"response_format": "url",
"upload_to_storage": true
}'