Overview
Welcome to the Zylo AI API documentation. Our API provides access to state-of-the-art AI models for text generation, analysis, and more.
Base URL:
https://api.zyloai.net
Initializing...
Next generation inference playground
Already have an account?
By signing up, you agree to our Terms and Privacy Policy
We sent a 5-digit code to
Review your API usage, plan limits, and management tools.
Rate Limit
1 req/min
Hard Limit
Daily Token Quota
2,048 / 4,096
Daily Requests
450 / 1,000
Current Plan
BASIC
Free Tier
No API key created yet
| Time | Tokens | Latency | Status |
|---|---|---|---|
| No recent requests | |||
Test your prompts against our AI models in real-time.
MODEL :: READY
Parameters
Output
0 tokensScale your AI capabilities with transparent pricing
Perfect for testing
For growing projects
Maximum power
Welcome to the Zylo AI API documentation. Our API provides access to state-of-the-art AI models for text generation, analysis, and more.
Base URL:
https://api.zyloai.net
Get started with Zylo AI in minutes.
Create an API key from the Console tab.
curl -X POST https://api.zyloai.net/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"prompt": "Hello, AI!", "model": "gemini-2.0-flash"}'
All API requests require authentication using a Bearer token.
Authorization: Bearer YOUR_API_KEY
POST /generate
Generate text from a prompt
GET /stats
Get usage statistics
GET /models
List available models
gemini-2.0-flash
Fast, lightweight Gemini model
gpt-4o
OpenAI's latest GPT-4 variant
claude-3.5-sonnet
Anthropic's Claude 3.5
import requests
response = requests.post(
"https://api.zyloai.net/generate",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={"prompt": "Hello!", "model": "gemini-2.0-flash"}
)
print(response.json())
const response = await fetch("https://api.zyloai.net/generate", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
prompt: "Hello!",
model: "gemini-2.0-flash"
})
});
const data = await response.json();
console.log(data);