Now serving DeepSeek V4
Unlimited DeepSeek V4 Flash.
Built for builders.
An OpenAI-compatible gateway. Flat ₹1,999/month for all-you-can-eat Flash, plus V4 Pro reasoning at half of OpenRouter retail.
100,000 free tokens. No card needed. Production-ready in 60 seconds.
python
from openai import OpenAI
client = OpenAI(
base_url="https://deepgate.dev/v1",
api_key="dgk_live_xxxxxxxxxxxxxxxxxxxxxxxx",
)
resp = client.chat.completions.create(
model="deepseek-v4-flash",
messages=[{"role": "user", "content": "Write a haiku about CDNs"}],
)
print(resp.choices[0].message.content)OpenAI-compatible
Use the openai SDK, langchain, llamaindex — anything that speaks OpenAI. Just swap base_url.
Sub-second start
No cold starts. No quotas-per-minute games on Flash. Streams open in under 400ms.
Predictable
Flat ₹1,999/mo for unlimited Flash. Pro is metered — you only pay when you reason.
Built for prod
Per-key rate limits, usage logs, and revocation. Pay with UPI, cards, or net-banking.
Pricing built for production.
No surprises. No credits-that-expire-in-30-days. Predictable monthly cost; pay-as-you-go on Pro.
Most popular
Starter
₹1,999/month
Cancel anytime
- Unlimited DeepSeek V4 Flash
- 3M V4 Pro tokens / mo included
- 60 RPM on Pro · no rate cap on Flash
- Email support
Pro top-ups
₹500+
Stack on Starter for more Pro
- 1M tokens — ₹500
- 2.5M tokens — ₹1,000
- 15M tokens — ₹5,000
- Half of OpenRouter retail
Drop-in OpenAI compatible.
Change two lines — base_url and api_key — and you’re live. Streaming, tool-calls, JSON mode all work as expected.
Endpointhttps://deepgate.dev/v1
Modelsdeepseek-v4-flash, deepseek-v4-pro
AuthAuthorization: Bearer dgk_live_...
Billing currencyINR (UPI / cards / net-banking)
curl — streaminglive
curl https://deepgate.dev/v1/chat/completions \
-H "Authorization: Bearer dgk_live_..." \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v4-flash",
"stream": true,
"messages": [
{"role":"user","content":"Stream me a 4-line poem"}
]
}'