DeepSeek
DeepSeek Text

alexandrealex33662222/deepseek-v4-pro-0813

Model ID: alexandrealex33662222/deepseek-v4-pro-0813
Family
DeepSeek
Context
Not specified
Input / 1M tokens
0.0403 $
Cache hit rate
Requests
8
Success
50.0%
Tokens
7.4K
Uptime 50.00%
24h agoNow
7 days agoNow

Pricing

Input / 1M tokens
0.0403 $
Output / 1M tokens
0.129 $
Prompt Cache
Cache read / 1M tokens
0.0023 $
Cache write / 1M tokens
0.0046 $

Repeated prompts are cached — reads are far cheaper than input, applied automatically via the API.

Price history

Price levels previously applied. The row tagged "current" is the live price.

Past Since 15/08/2026 - 14:59:58
Input / 1M tokens0.000502 $ Output / 1M tokens0.000412 $ Cache read / 1M tokens0.000104 $ Cache write / 1M tokens0.000105 $
Current Since 15/08/2026 - 16:47:18
Input / 1M tokens0.0403 $ Output / 1M tokens0.129 $ Cache read / 1M tokens0.0023 $ Cache write / 1M tokens0.0046 $
Cost estimator
Estimated total 0 $
Average / request 0 $

Estimate based on list prices. Caching usually makes it cheaper.

Supported endpoints
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/alexandrealex33662222/deepseek-v4-pro-0813:generateContent
https://api.xah.io/api/chat
https://api.xah.io/api/generate
Method POST · application/json
Auth Bearer token (API key)
Tested load 🟡 Medium peak 13/s · sustained 5.5/s
Latency p95 8,204 ms
API kinds Text

Share

curl 'https://api.xah.io/v1/chat/completions' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "alexandrealex33662222/deepseek-v4-pro-0813",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
}'
// 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": "alexandrealex33662222/deepseek-v4-pro-0813",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
})
});
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": "alexandrealex33662222/deepseek-v4-pro-0813",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "alexandrealex33662222/deepseek-v4-pro-0813",
    "messages": [
        {
            "role": "user",
            "content": "Hello, who are you?"
        }
    ]
}

Try it

Send a prompt with your API key — uses real credits, streams back instantly.

Reviews & comments
0.0 / 0 reviews
Loading reviews...
Contact Support
We are always ready to help you