Models / DeepSeek
Model vendor
DeepSeek
DeepSeek publishes open-weight frontier models — V-series generalists and R-series reasoners at disruptive prices.
12Models routed
−65%Average vs list price
1Channels serving DeepSeek
Popular models
DeepSeek V4 Pro 0423DeepSeek V4 Pro is DeepSeek's large-scale mixture-of-experts model, released 2026-04, with 1.6T total and 49B active parameters.$0.17 / $0.35in / out · 1M−89%DeepSeek V4 Flash 0423DeepSeek V4 Flash 0423 is DeepSeek's efficiency-optimized Mixture-of-Experts model, released 2026-04, with 284B total parameters and 13B activated per token.$0.03 / $0.06in / out · 1M−62%DeepSeek V4 Flash 0731newDeepSeek V4 Flash 0731 is DeepSeek's sparse mixture-of-experts model with 13B active parameters out of 284B total, released 2026-07 as the GA revision of V4 Flash.$0.04 / $0.13in / out · 1M−60%
DeepSeek models on MirAPI
ModelTypeContextInputOutputCache r / wOff listChannels
Defaultstable$0.17 / $0.35in / out · 1M−89%vs list price
Defaultstable$0.03 / $0.06in / out · 1M−62%vs list price
Defaultstable$0.04 / $0.13in / out · 1M−60%vs list price
Defaultstable$0.59 / $1.78in / out · 1M−50%vs list price
Migration
A drop-in replacement for the OpenAI API
We speak the OpenAI wire format: official SDKs, LangChain, agent frameworks and your own wrapper all work as-is. Change the base URL and write model IDs the catalogue way: deepseek-v4-pro becomes deepseek/deepseek-v4-pro.
Endpoints
/v1/chat/completionsChat & tool callsimport os from openai import OpenAI client = OpenAI( base_url="https://api.mirapi.ai/v1", # changed api_key=os.environ["MIRAPI_API_KEY"], # changed ) resp = client.chat.completions.create( model="deepseek/deepseek-v4-pro", messages=[{"role": "user", "content": "Hello"}], )
import OpenAI from "openai"; const client = new OpenAI({ baseURL: "https://api.mirapi.ai/v1", // changed apiKey: process.env.MIRAPI_API_KEY, // changed }); const res = await client.chat.completions.create({ model: "deepseek/deepseek-v4-pro", messages: [{ role: "user", content: "Hello" }], });
curl https://api.mirapi.ai/v1/chat/completions \ -H "Authorization: Bearer $MIRAPI_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "deepseek/deepseek-v4-pro", "messages": [{"role": "user", "content": "Hello"}] }'
One key covers DeepSeek and 10 more vendors.
1M free tokens to start. No card required.