What is Izzi API?
Izzi API is a unified AI gateway that gives you access to 38+ AI models β including Claude Opus 4, GPT-5, Gemini 2.5, and Grok 3 β through a single API key. Pay-as-you-go with 14 free models included.
Why developers choose Izzi API
- β One API key β access Claude, GPT, Gemini, Llama, DeepSeek and more
- β 14 free models β Qwen3 235B, Llama 3.3, DeepSeek R1 at zero cost
- β OpenAI + Anthropic compatible β drop-in replacement, no code changes
- β $1 minimum deposit β get +$5 bonus on first top-up
- β VietQR + Crypto payments β no Visa/Mastercard required
- β Balance never expires
Step 1: Create your account
- Go to izziapi.com
- Sign in with Google (one click)
- You're in! Free tier is instantly active.
Step 2: Get your API key
- Open Dashboard β API Keys
- Click "Create New Key"
- Copy your key (starts with
izzi-)
Step 3: Make your first API call
Using curl
curl https://api.izziapi.com/v1/chat/completions \
-H "Authorization: Bearer izzi-YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-sonnet-4-20250514",
"messages": [{"role": "user", "content": "Hello from Izzi API!"}]
}'Using Python
from openai import OpenAI
client = OpenAI(
api_key="izzi-YOUR_KEY",
base_url="https://api.izziapi.com/v1"
)
response = client.chat.completions.create(
model="claude-sonnet-4-20250514",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)Using Node.js
import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'izzi-YOUR_KEY',
baseURL: 'https://api.izziapi.com/v1',
});
const response = await client.chat.completions.create({
model: 'claude-sonnet-4-20250514',
messages: [{ role: 'user', content: 'Hello from Node.js!' }],
});
console.log(response.choices[0].message.content);Step 4: Try a free model
Switch the model to any free model β no credits needed:
curl https://api.izziapi.com/v1/chat/completions \
-H "Authorization: Bearer izzi-YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3.6-plus-free",
"messages": [{"role": "user", "content": "What is quantum computing?"}]
}'Available free models
| Model | Context | Best for |
|---|---|---|
| Qwen3.6 Plus | 131K | Best overall free model |
| Llama 3.3 70B | 128K | Fast general purpose |
| DeepSeek R1 | 128K | Reasoning + coding |
| Qwen3 235B | 128K | Large MoE model |
| Step 3.5 Flash | 256K | Longest context window |
Step 5: Top up for premium models
- π³ VietQR β scan QR code from any Vietnamese bank app
- πͺ Crypto β BTC, ETH, USDT accepted
- π° $1 minimum β get +$5 bonus on first deposit
- π 1 credit = $1 β simple pricing, no hidden fees
What's next?
- π Read the API docs for full endpoint reference
- π§° Set up Cursor, Cline, or Windsurf with Izzi API
- π° Learn 7 ways to reduce API costs
- π Explore all 14 free models
