OpenAI-compatible API gateway for Indonesian companies.
API AI siap pakai · Ditagih dalam IDR · Region Jakarta
Pay via QRIS, bank transfer, or credit card. No USD conversion needed on your side.
Bayar dalam Rupiah lewat Midtrans — tanpa kurs, tanpa ribet.
Works with any OpenAI SDK. Change one line of code — just swap the base URL.
Ganti satu baris kode. API 100% kompatibel dengan OpenAI SDK.
GPT-4o, Claude, Llama, and more — one API key, one bill.
Satu API key untuk semua model AI terkemuka.
Gateway hosted in Jakarta for low latency to your Indonesian users.
Server di Jakarta, latensi rendah untuk pengguna Indonesia.
Your messages are never logged or retained. Only token counts are stored for billing.
Isi pesan tidak pernah disimpan — hanya jumlah token untuk penagihan.
NIK, NPWP, names, and phone numbers detected and redacted before reaching the model.
NIK, NPWP, nama, dan nomor HP disensor sebelum dikirim ke AI.
| Model | Provider | Input / 1M tokens | Output / 1M tokens |
|---|---|---|---|
openai/gpt-4oGPT-4o |
openai | Rp 44.945 ($2.50) | Rp 179.782 ($10.00) |
openai/gpt-4o-miniGPT-4o mini |
openai | Rp 2.696 ($0.15) | Rp 10.786 ($0.60) |
anthropic/claude-opus-4-7Claude Opus 4.7 |
anthropic | Rp 89.891 ($5.00) | Rp 449.457 ($25.00) |
anthropic/claude-sonnet-4-6Claude Sonnet 4.6 |
anthropic | Rp 53.934 ($3.00) | Rp 269.674 ($15.00) |
anthropic/claude-haiku-4-5-20251001Claude Haiku 4.5 |
anthropic | Rp 17.978 ($1.00) | Rp 89.891 ($5.00) |
qwen/qwen3.7-plusQwen3.7 Plus |
openrouter | Rp 7.191 ($0.40) | Rp 28.765 ($1.60) |
openrouter/owl-alphaOWL Alpha (Free) |
openrouter | Free | Free |
IDR prices are indicative at today's rate. You are charged in USD at the rate locked in when you top up. See full pricing →
cURL
curl https://api.nusara.ai/v1/chat/completions \
-H "Authorization: Bearer nusara_sk_..." \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-4o",
"messages": [{"role": "user", "content": "Halo!"}]
}'
Python (OpenAI SDK)
from openai import OpenAI
client = OpenAI(
api_key="nusara_sk_...",
base_url="https://api.nusara.ai/v1",
)
resp = client.chat.completions.create(
model="openai/gpt-4o",
messages=[{"role": "user", "content": "Halo!"}],
)