# DeepSeek: deepseek-v4-flash-vision-exp

- Model ID: `deepseek-v4-flash-vision-exp`
- Provider: DeepSeek
- Web version: https://www.moleapi.com/en/models/deepseek/deepseek-v4-flash-vision-exp
- Content status: catalog

## Model introduction

deepseek-v4-flash-vision-exp is a DeepSeek model available through MoleAPI with openai, openai-response, anthropic, gemini access. It fits OpenAI compatible, Responses API, Anthropic compatible, Gemini compatible workflows, with pricing synced from the MoleAPI console.

## Model capabilities

- OpenAI compatible
- Responses API
- Anthropic compatible
- Gemini compatible
- Vision
- Prompt cache

### Verified specifications

- Catalog status: Currently available on MoleAPI
- Compatible protocols: openai, openai-response, anthropic, gemini
- Available billing groups: Standard, Discount, Relay

## Model pricing and access

Pricing is supplied dynamically by the MoleAPI console API.

### Standard (default, x1)

- Input: $0.22 / 1M tokens
- Output: $0.67 / 1M tokens
- Cache read: $0.0075 / 1M tokens
- Cache write: $0.275 / 1M tokens

### Discount (discount, x0.8)

- Input: $0.176 / 1M tokens
- Output: $0.536 / 1M tokens
- Cache read: $0.006 / 1M tokens
- Cache write: $0.22 / 1M tokens

### Relay (relay, x0.3)

- Input: $0.066 / 1M tokens
- Output: $0.201 / 1M tokens
- Cache read: $0.0023 / 1M tokens
- Cache write: $0.0825 / 1M tokens

### Access protocols

| Protocol | Method | Endpoint |
| --- | --- | --- |
| openai | POST | /v1/chat/completions |
| openai-response | POST | /v1/responses |
| anthropic | POST | /v1/messages |
| gemini | POST | /v1beta/models/{model}:generateContent |

- Live pricing source: https://home.moleapi.com/api/pricing

## About deepseek-v4-flash-vision-exp

deepseek-v4-flash-vision-exp is a DeepSeek model available through MoleAPI with openai, openai-response, anthropic, gemini access. It fits OpenAI compatible, Responses API, Anthropic compatible, Gemini compatible workflows, with pricing synced from the MoleAPI console.

### Sources

- [MoleAPI console pricing catalog](https://home.moleapi.com/api/pricing) — MoleAPI

## Code examples

### cURL

```bash
curl https://api.moleapi.com/v1/responses \
  -H "Authorization: Bearer $MOLEAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"deepseek-v4-flash-vision-exp","input":"Explain this problem step by step."}'
```

### Python

```python
from openai import OpenAI

client = OpenAI(base_url="https://api.moleapi.com/v1", api_key="YOUR_MOLEAPI_API_KEY")
response = client.responses.create(model="deepseek-v4-flash-vision-exp", input="Explain this problem step by step.")
print(response.output_text)
```

### TypeScript

```typescript
import OpenAI from "openai";

const client = new OpenAI({ baseURL: "https://api.moleapi.com/v1", apiKey: process.env.MOLEAPI_API_KEY });
const response = await client.responses.create({ model: "deepseek-v4-flash-vision-exp", input: "Explain this problem step by step." });
console.log(response.output_text);
```

## More related models

- [deepseek-v4-flash](https://www.moleapi.com/en/models/deepseek/deepseek-v4-flash) — DeepSeek
- [deepseek-v4-pro](https://www.moleapi.com/en/models/deepseek/deepseek-v4-pro) — DeepSeek
- [deepseek-v4-flash-260425](https://www.moleapi.com/en/models/deepseek/deepseek-v4-flash-260425) — DeepSeek
- [gpt-5.6-luna](https://www.moleapi.com/en/models/openai/gpt-5.6-luna) — OpenAI
- [gpt-5.6-sol](https://www.moleapi.com/en/models/openai/gpt-5.6-sol) — OpenAI
- [gpt-5.6-terra](https://www.moleapi.com/en/models/openai/gpt-5.6-terra) — OpenAI

## Frequently asked questions

### How is deepseek-v4-flash-vision-exp priced?

Prices are read from the MoleAPI console API and update with model prices, context tiers, and account groups.

### How can I access deepseek-v4-flash-vision-exp?

The catalog currently lists openai, openai-response, anthropic, gemini.

### How do I switch an existing project to deepseek-v4-flash-vision-exp?

Keep the MoleAPI API address and key, replace the model parameter, and check protocol-specific parameters.

### Where do the deepseek-v4-flash-vision-exp details come from?

Only confirmed availability, pricing, and protocol details from the MoleAPI catalog are included.
