> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unifically.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DeepSeek V4 Pro

> DeepSeek's DeepSeek V4 Pro language model. See supported inputs, parameters, pricing, response fields, and API examples.

DeepSeek V4 Pro is DeepSeek's 1.6T-parameter V4 model (the August 2026 GA release) for agent work and knowledge-heavy tasks, with a 1M-token context window, 384K max output, and thinking on by default.

## Model

```
deepseek/deepseek-v4-pro
```

|              |                 |
| ------------ | --------------- |
| **Provider** | DeepSeek        |
| **Name**     | DeepSeek V4 Pro |

## Supported Endpoints

All three API formats are supported:

* [Chat Completions](/api-reference/v1-chat-completions) — `POST /v1/chat/completions`
* [Responses](/api-reference/v1-responses) — `POST /v1/responses`
* [Messages](/api-reference/v1-messages) — `POST /v1/messages`

<Info>
  DeepSeek models bill at 2x during peak hours: Monday to Friday, 01:00–04:00 and 06:00–10:00 UTC. The rate is fixed when the request starts. See [pricing](https://unifically.com/pricing) for current rates.
</Info>

## Example

```bash theme={null}
curl -X POST https://api.unifically.com/v1/chat/completions   -H "Content-Type: application/json"   -H "Authorization: Bearer YOUR_API_KEY"   -d '{
    "model": "deepseek/deepseek-v4-pro",
    "messages": [
      {"role": "user", "content": "Explain the trade-offs between these two database schemas."}
    ]
  }'
```

<Note>
  **Volume discounts** are available for almost all models. Reach out at [contact@unifically.com](mailto:contact@unifically.com) to discuss custom pricing.
</Note>
