DeepSeek V3.2
deepseek-ai/DeepSeek-V3.2
- Input
- $0.4200
- Output
- $0.6300
- Cached input
- $0.0420
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.
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)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.
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.
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.
Frontier open-weight models, priced per million tokens. No idle server costs.
deepseek-ai/DeepSeek-V3.2
deepseek-ai/DeepSeek-R1
moonshotai/Kimi-K2
zai-org/GLM-4.6
moonshotai/Kimi-K2-Turbo
zai-org/GLM-4.5-Air
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
}
}