> ## 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 Flash

> DeepSeek's versioned V4 Flash model ID. See supported inputs, parameters, pricing, response fields, and API examples.

DeepSeek V4 Flash is the versioned `deepseek-v4-flash` model ID. DeepSeek retired the 0731 model on September 10, 2026 and now answers this ID with DeepSeek V4.1 Flash, so existing integrations keep working. New code should use `deepseek/deepseek-flash`.

## Model

```
deepseek/deepseek-v4-flash
```

|              |                   |
| ------------ | ----------------- |
| **Provider** | DeepSeek          |
| **Name**     | DeepSeek V4 Flash |

## 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-flash",
    "messages": [
      {"role": "user", "content": "Summarize this changelog in three bullet points."}
    ]
  }'
```

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