DeepSeek, Kimi and GLM are live — one endpoint, one bill.
Voyai

One endpoint.
Every open model.

Call DeepSeek, Kimi and GLM through a single OpenAI-compatible API. No contracts, no minimums — you pay for the tokens you actually use.

Free credit on sign-up. No card required.

Models
Get API key
from openai import OpenAI

client = OpenAI(
    base_url="https://api.voyai.net/v1",
    api_key="<API_KEY>",
)

response = client.chat.completions.create(
    model="deepseek-ai/DeepSeek-V3.2",
    messages=[
        {"role": "user", "content": "Explain prompt caching in two sentences."},
    ],
)

print(response.choices[0].message.content)
Explain prompt caching in two sentences.
Sample response. Highlighted values are the only things you change.

Built for people shipping to production

Drop-in compatible

Fully OpenAI-compatible: chat completions, streaming, tool calling, JSON mode. Point your existing client at our base URL and keep the rest of your code.

Routed, not just proxied

Every model runs behind a pool of upstream accounts with health checks and automatic failover. When one provider degrades, your request is retried elsewhere before it ever fails.

Billing you can audit

Per-request token counts, cached-input discounts passed through, and a line item for every call. Set a spend limit per key so a runaway loop cannot drain your balance.

Models available today

Frontier open-weight models, priced per million tokens. No idle server costs.

Browse all models

DeepSeek V3.2

deepseek-ai/DeepSeek-V3.2

128K context
Tool callingJSON modeContext caching
Input
$0.4200
Output
$0.6300
Cached input
$0.0420

DeepSeek R1

deepseek-ai/DeepSeek-R1

128K context
ReasoningJSON modeContext caching
Input
$0.8250
Output
$3.2850
Cached input
$0.2100

Kimi K2

moonshotai/Kimi-K2

128K context
Tool callingJSON modeContext caching
Input
$0.9000
Output
$3.7500
Cached input
$0.2250

GLM-4.6

zai-org/GLM-4.6

200K context
Tool callingJSON modeReasoningContext caching
Input
$0.9000
Output
$3.3000
Cached input
$0.1650

Kimi K2 Turbo

moonshotai/Kimi-K2-Turbo

128K context
Tool callingJSON modeContext caching
Input
$1.7250
Output
$12.0000
Cached input
$0.4350

GLM-4.5 Air

zai-org/GLM-4.5-Air

128K context
Tool callingJSON mode
Input
$0.3000
Output
$1.6500
Cached input

You pay for tokens. Nothing else.

No seat fees, no monthly minimum, no charge for a model sitting idle. Cached input tokens are billed at a fraction of the normal rate and we pass that discount straight through.

{
  "usage": {
    "prompt_tokens": 1000,
    "prompt_cache_hit_tokens": 700,
    "prompt_cache_miss_tokens": 300,
    "completion_tokens": 50
  }
}
Cached input applies when a request reuses a prefix the upstream has already processed. It is billed at the cached rate automatically — nothing to enable.

Start with free credit

Create a key and make your first call in under a minute.