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.

21total routes
12Zora text routes
0legacy aliases
9media routes
Public routesOpenAI-compatible model IDs

Zora Image routes

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

Image
Model IDEndpointDescriptionCopy
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.

Legacy-compatible routes

Compatibility aliases are not part of the current public Zora model catalog.

Model IDEndpointDescriptionCopy

Zora GPT/Codex models

Use the exact model IDs returned by /v1/models.

Zora production catalog

GPT 5.5

gpt-5.5
Zora

Primary Zora-backed production chat model.

General chat, coding, technical writing, and production smoke tests.

GPT 5.4

gpt-5.4
Zora

Zora-backed GPT route for high quality chat and coding work.

Coding, reasoning, and long-form assistant tasks.

GPT 5.4 Mini

gpt-5.4-mini
Zora

Lower-latency Zora-backed GPT route.

Fast chat completions, command helpers, and lightweight coding tasks.

GPT 5.3 Codex

gpt-5.3-codex
Zora

Codex-oriented model ID published by Zora.

Agentic coding and repository work when supported by the upstream account.

GPT 5.2 Codex

gpt-5.2-codex
Zora

Codex-oriented model ID published by Zora.

Coding assistant workflows and code review tasks.

GPT 5.2

gpt-5.2
Zora

General GPT route published by Zora.

General assistant, analysis, and coding requests.

GPT 5.1 Codex Max

gpt-5.1-codex-max
Zora

High-capability Codex route published by Zora.

Harder coding and review workflows when supported upstream.

GPT 5.1 Codex Mini

gpt-5.1-codex-mini
Zora

Lower-latency Codex route published by Zora.

Fast code edits, explanation, and lightweight agent tasks.

GPT 5 Codex

gpt-5-codex
Zora

Codex model ID published by Zora.

Code generation, patches, and repository analysis.

GPT 5 Codex Mini

gpt-5-codex-mini
Zora

Mini Codex model ID published by Zora.

Fast code assistant tasks.

GPT 5.3 Codex Spark

gpt-5.3-codex-spark
Zora

Spark Codex model ID published by Zora.

Small coding tasks and quick agent responses.

Codex Auto Review

codex-auto-review
Zora

Auto-review model ID published by Zora.

Automated code review style workflows when supported upstream.

Zora Audio routes

Paid-plan audio models for async speech, transcription, dubbing, sound effects, and voice tools.

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.
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.

Request example

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 $body
curl 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
  }'