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:
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-3-opus-20240229",
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:
# Try different models — just change the model name
response = client.chat.completions.create(
model="gpt-4-turbo", # OpenAI
# model="claude-3-opus", # Anthropic
# model="gemini-3-pro", # Google
# model="llama-3-70b", # Meta
# model="grok-3", # xAI
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.