nbhooks

Fast, cheap AI. Ready to use.

One API for all the best AI models — deepseek, GLM, Kimi, and more. OpenAI-compatible, streaming, and transparent quotas.

main.py
1 from openai import OpenAI
2 
3 client = OpenAI(
4   base_url="https://api.nbhooks.my.id/v1",
5   api_key="sk-...",
6 )
7 
8 resp = client.chat.completions.create(
9   model="deepseek-v4-flash",
10   messages=[{"role":"user","content":"Hello"}],
11 )
12 print(resp.choices[0].message.content)

Everything you need

OpenAI-compatible

Just change your base_url. All OpenAI clients (Python, JS, curl) work as-is, no code changes.

Streaming

Full SSE stream support. Responses flow in real time instead of waiting for the whole thing.

Rate limits & quotas

Strict per-key and per-IP rate limiting, plus clear monthly token quotas. No runaway spikes.

Available models

Price per 1M tokens scales with the multiplier. Vision models accept image input.

Loading models…

How it works

From zero to your first request in minutes.

1

Get an API key

Open the dashboard, sign in, and copy your key.

2

Set your base_url

Point your OpenAI client at https://api.nbhooks.my.id/v1

3

Go

Requests just work. Streaming, quota, and billing are handled automatically.

curl
1 curl -N https://api.nbhooks.my.id/v1/chat/completions \
2   -H "Authorization: Bearer sk-..." \
3   -H "Content-Type: application/json" \
4   -d '{"model":"deepseek-v4-flash","stream":true,
5       "messages":[{"role":"user","content":"Hello"}]}'

Ready to build?

Get an API key, point your OpenAI client at us, and go. No long-term commitment.

Open the dashboard