DeepSeek

DeepSeek V3.2 API

CN DeepSeek | released 2025-09
Try in Playground → Get API key

DeepSeek V3.2 is a stable, well-balanced model for general chat, drafting, and code completion. It offers strong instruction-following and broad language coverage at a low price point, making it a dependable default for production workloads that do not require the newest reasoning capabilities.

CodeTool UseJSON Mode

Pricing (official list, per 1M tokens)

Input
$0.29/M
Output
$0.43/M

Specifications

Context window128K tokens Max output8.192K tokens Input modalitiesText StreamingYes APIOpenAI-compatible

How to use DeepSeek V3.2

Drop-in OpenAI replacement. Change only the base_url and model.

# Python -pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://meshtok.com/v1",
    api_key="sk-your-MeshTok-key",
)

resp = client.chat.completions.create(
    model="deepseek/deepseek-v3.2",
    messages=[{"role":"user","content":"Hello!"}],
)
print(resp.choices[0].message.content)
# cURL
curl https://meshtok.com/v1/chat/completions \
  -H "Authorization: Bearer sk-your-MeshTok-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"deepseek/deepseek-v3.2","messages":[{"role":"user","content":"Hello!"}]}'

Related models

Other models you might consider.