DeepSeek's strongest V4 model (checkpoint V4-Pro-0813). Advanced reasoning with thinking mode on by default, a 1M-token context window, and discounted cache reads - still far cheaper than comparable frontier models.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 808 | $0.54 |
| Output Tokens | 1,616 | $1.08 |
| Cached Tokens | 6.7 | $0.00 |
* 1,500 credits โ $1 (actual charges may vary based on usage)
curl -X POST "https://api.core.today/llm/deepseek/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "deepseek-v4-pro",
"messages": [
{
"role": "user",
"content": "Prove that the sum of two even numbers is even."
}
],
"max_tokens": 2048
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model ID, e.g. "deepseek-v4-pro". |
messages | array | Yes | - | Chat messages in OpenAI format (system/user/assistant roles). |
temperature | number | No | 0.7 | Sampling temperature (0-2). |
max_tokens | integer | No | 2048 | Maximum completion tokens. |
stream | boolean | No | false | Stream the response as server-sent events. |
OpenAI-compatible chat completion request
curl -X POST "https://api.core.today/llm/deepseek/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "deepseek-v4-pro",
"messages": [
{
"role": "user",
"content": "Prove that the sum of two even numbers is even."
}
],
"max_tokens": 2048
}'POST /llm/deepseek/v1/chat/completions