IzziAPI
TutorialApr 10, 20265 min read

Getting Started with Izzi API in 5 Minutes

Quick start guide to set up Izzi API and make your first AI API call. Access 38+ models through a single endpoint.

Izzi API Team
Engineering & DevRel
izzi-apiquickstarttutorialai-api
Getting Started with Izzi API in 5 Minutes

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

  1. Go to izziapi.com
  2. Sign in with Google (one click)
  3. You're in! Free tier is instantly active.

Step 2: Get your API key

  1. Open Dashboard β†’ API Keys
  2. Click "Create New Key"
  3. Copy your key (starts with izzi-)

Step 3: Make your first API call

Using curl

Bash
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

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

Python
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:

Bash
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

ModelContextBest for
Qwen3.6 Plus131KBest overall free model
Llama 3.3 70B128KFast general purpose
DeepSeek R1128KReasoning + coding
Qwen3 235B128KLarge MoE model
Step 3.5 Flash256KLongest 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?

Ready to start building?

Access 38+ AI models through a single API. Free tier available β€” no credit card required.

MORE

Related articles