Enterprise AI APIs,
billed in rupiah

OpenAI-compatible API gateway for Indonesian companies.

API AI siap pakai · Ditagih dalam IDR · Region Jakarta

Why Nusara

IDR Billing

Pay via QRIS, bank transfer, or credit card. No USD conversion needed on your side.

Bayar dalam Rupiah lewat Midtrans — tanpa kurs, tanpa ribet.

OpenAI-compatible

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.

Multi-provider

GPT-4o, Claude, Llama, and more — one API key, one bill.

Satu API key untuk semua model AI terkemuka.

Jakarta region

Gateway hosted in Jakarta for low latency to your Indonesian users.

Server di Jakarta, latensi rendah untuk pengguna Indonesia.

No prompt storage

Your messages are never logged or retained. Only token counts are stored for billing.

Isi pesan tidak pernah disimpan — hanya jumlah token untuk penagihan.

Bahasa PII Scrubbing Coming soon

NIK, NPWP, names, and phone numbers detected and redacted before reaching the model.

NIK, NPWP, nama, dan nomor HP disensor sebelum dikirim ke AI.

Pricing

Model Provider Input / 1M tokens Output / 1M tokens
openai/gpt-4o
GPT-4o
openai Rp 44.945 ($2.50) Rp 179.782 ($10.00)
openai/gpt-4o-mini
GPT-4o mini
openai Rp 2.696 ($0.15) Rp 10.786 ($0.60)
anthropic/claude-opus-4-7
Claude Opus 4.7
anthropic Rp 89.891 ($5.00) Rp 449.457 ($25.00)
anthropic/claude-sonnet-4-6
Claude Sonnet 4.6
anthropic Rp 53.934 ($3.00) Rp 269.674 ($15.00)
anthropic/claude-haiku-4-5-20251001
Claude Haiku 4.5
anthropic Rp 17.978 ($1.00) Rp 89.891 ($5.00)
qwen/qwen3.7-plus
Qwen3.7 Plus
openrouter Rp 7.191 ($0.40) Rp 28.765 ($1.60)
openrouter/owl-alpha
OWL 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 →

Drop-in integration

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!"}],
)