DeepSeek
DeepSeek Texto

devdoclang/deepseek-v4-flash

ID del modelo: devdoclang/deepseek-v4-flash
Familia
DeepSeek
Contexto
262,000
Por request
0.00062 €
Requests
10.2K
Éxito
97.7%
Tokens
1.07B
Uptime 75.00%
Hace 24 horasAhora
Hace 7 díasAhora

Precios

Por request
0.00062 €
Historial de precios

Niveles de precio aplicados anteriormente. La fila marcada como "actual" es el precio vigente.

Actual Desde 29/07/2026 - 07:14:58
Por request0.00062 €
Endpoints admitidos
https://api.xah.io/v1/chat/completions
https://api.xah.io/v1/messages
https://api.xah.io/v1/responses
https://api.xah.io/v1beta/models/devdoclang/deepseek-v4-flash:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
Método POST · application/json
Autenticación Bearer token (API key)
Límite de requests 40 req/min
Carga probada 🟢 High pico 46/s · sostenida 6.4/s
Latencia p95 10,689 ms
Tipos de API Texto

Notas técnicas

> Leave a 5★ rating if you enjoy the service—it helps us keep prices low. If you hit an AWS Gateway error, just retry a few times. Due to limited supply, prices are temporarily higher. Thanks for your understanding!

Compartir

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "devdoclang/deepseek-v4-flash",
    "messages": [
        {
            "role": "user",
            "content": "Hola, ¿quién eres?"
        }
    ]
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "devdoclang/deepseek-v4-flash",
    "messages": [
        {
            "role": "user",
            "content": "Hola, ¿quién eres?"
        }
    ]
})
});
const data = await res.json();
console.log(data);
import requests

url = 'https://api.xah.io/v1/chat/completions'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = {
    "model": "devdoclang/deepseek-v4-flash",
    "messages": [
        {
            "role": "user",
            "content": "Hola, ¿quién eres?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "devdoclang/deepseek-v4-flash",
    "messages": [
        {
            "role": "user",
            "content": "Hola, ¿quién eres?"
        }
    ]
}

Probar ahora

Envía un prompt con tu API key: usa créditos reales y devuelve el streaming al instante.

Reseñas y comentarios
5.0 / 1 reseñas
Cargando reseñas...
Contactar soporte
Siempre estamos listos para ayudarle