Quick Start

Get up and running with Zora in under 5 minutes. Follow these steps to make your first API call.

1. Get Your API Key

Sign up at zora.io.vn and navigate to your Dashboard → API Keys to create a new key.

2. Install the SDK

Zora is fully compatible with the OpenAI SDK. Install it for your language:

Python
pip install openai
Node.js
npm install openai

3. Make Your First Request

Use any OpenAI client — just change the base_url to https://api.zora.io.vn/v1:

from openai import OpenAI client = OpenAI( api_key="zr_live_sk_your_key_here", base_url="https://api.zora.io.vn/v1" ) response = client.chat.completions.create( model="claude-opus-4.6", messages=[ {"role": "user", "content": "Hello, world!"} ] ) print(response.choices[0].message.content)

4. Switch Models Instantly

Change models with a single parameter. No code changes, no new API keys:

Python
# Try different models — just change the model name response = client.chat.completions.create( model="gpt-5.4-pro", # OpenAI # model="claude-opus-4.6", # Anthropic # model="gemini-3.1-pro", # Google # model="grok-4.1-fast", # xAI # model="deepseek-r1", # DeepSeek messages=[{"role": "user", "content": "Hello!"}] )
🎉 That's it!
You're now ready to use any of the 200+ AI models available on Zora. Check out the Models page for a full list.