Every leading AI model. One API. One bill.

Pay per token. No minimums. No lock-in.

Sign up in under a minute. No credit card required.

POWERED BY

OpenAIOpenAI
AnthropicAnthropic
GoogleGoogle
xAIxAI
MetaMeta
MistralMistral
DeepSeekDeepSeek
AlibabaAlibaba
MoonshotMoonshot
ZhipuZhipu
MiniMaxMiniMax
ByteDanceByteDance
KuaishouKuaishou
BFLBFL
ElevenLabsElevenLabs

Featured models

Start here

Browse all models

DeepSeek V4 Pro

NEWText

DeepSeek's next-generation flagship. 1M context, native reasoning mode, strong agentic coding and STEM.

Context
1M
Max output
384K
Latency
Medium
Input price
$1.69 / 1M
Output price
$3.38 / 1M

Qwen3.5-397B-A17B

TextArabic

Alibaba's flagship MoE — 397B total / 17B active. Frontier general intelligence with the best Arabic in the catalog.

Context
256K
Max output
32K
Latency
Medium
Input price
$0.600 / 1M
Output price
$3.60 / 1M

Claude Sonnet 4.6

TextArabic

Anthropic's workhorse coding and chat model. Best Arabic among Western flagships, strong tool use, 200K context.

Context
200K
Max output
64K
Latency
Medium
Input price
$3.00 / 1M
Output price
$15.00 / 1M

Why Thalam

Freedom, without the sprawl.

One bill, every model.

DeepSeek, Qwen, Kimi, Kling, Kolors — one key, one dashboard, one invoice at the end of the month.

thalam.Apr 2026
DeepSeek V3.2$12.40
Qwen3.5$04.10
Kimi K2.5$08.20
Kling V3$03.00
Kolors$00.80
Total$28.50

Governance built in.

Per-key spend caps, real-time alerts, usage analytics. Kill a runaway key without redeploying.

key_prod_8e3f
Active
Spend cap$142 / $200
alert at $180

2 lines to switch.

Change base_url and key. Every OpenAI SDK works unchanged — LangChain, LlamaIndex, Instructor.

-base_url="api.openai.com/v1"
+base_url="api.thalam.ai/v1"
-api_key=os.environ["OPENAI_KEY"]
+api_key=os.environ["THALAM_KEY"]

Priced per token.

No seats, no minimums, no expiry. Credits work the same across every model.

$ / 1M tokensin · out
deepseek-v3.2$0.27$0.40
qwen3.5-122b$0.40$3.20
kimi-k2.5$0.62$2.47

Get started

From zero to your first request in a minute.

No demos to book, no contracts to sign, no waitlist to join.

1

Create your account

One click with Google, GitHub, or email.

2

Top up your balance

Start with $5 or $500. One balance that works everywhere — text, image, and video models.

Apr 18
$50
Apr 09
$20
3

Ship with your key

Drop your key into any OpenAI SDK and change the base URL. No new library to learn.

THALAM_API_KEY
••••••••••••••••

ENTERPRISE

Enterprise plans for teams in production.

Custom volume pricing
AED or USD invoicing on contractual terms
Higher rate limits
Formal SLA on request
Dedicated support channel

DEVELOPER FIRST

Integration in Seconds.

We are perfectly compatible with OpenAI client libraries like LangChain, Ollama, and standard REST clients. No learning curve.

Standardized JSON Payloads
Streaming & async support
Unified Billing & Metering
quickstart.py
# No new library — just point your existing OpenAI client here
from openai import OpenAI
client = OpenAI(
api_key="tl-live-...",
base_url="https://api.thalam.ai/v1"
)
response = client.chat.completions.create(
model="deepseek/deepseek-v3.2",
messages=[{"role": "user", "content": "Summarise this contract in Arabic"}]
)
# Same SDK, same call shape — point it at any model in the catalog.
print(response.choices[0].message.content)