Sign in to your Zoapi account to manage your API keys and usage.
Signed in successfully!
Redirecting to your dashboard…
No account? Get started free
Enter your email to receive a free API key and start building with Zoapi instantly.
Keep this key safe — it grants full access to your Zoapi account.
Quick start:
Add Authorization: Bearer YOUR_KEY to every API request.
Zoapi provides a simple REST API. Choose a section to explore:
Make your first API call in under 60 seconds:
curl https://api.zoapi.io/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "zoapi-1",
"messages": [
{"role":"user","content":"Hello!"}
]
}'
All requests require a bearer token in the Authorization header:
Authorization: Bearer zoa_xxxxxxxxxxxxxxxxxxxx
API keys are scoped per project. Never expose them client-side. Rotate keys from your dashboard at any time.