DeepSeek
DeepSeek Text

vpsnodelab/deepseek-v4-flash-0731

Model ID: vpsnodelab/deepseek-v4-flash-0731
Family
DeepSeek
Context
1,000,000
Minimum charge / request
0.000214 $
Requests
0
Success
Tokens
0
Uptime
24h agoNow
7 days agoNow

Pricing

Input / 1M tokens
0.00428 $
Output / 1M tokens
0.00428 $
Minimum charge / request
0.000214 $
Price history

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

Current Since 14/08/2026 - 22:07:42
Input / 1M tokens0.00428 $ Output / 1M tokens0.00428 $ Minimum charge / request0.000214 $
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/vpsnodelab/deepseek-v4-flash-0731: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 2.6/s
Latency p95 15,398 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": "vpsnodelab/deepseek-v4-flash-0731",
    "messages": [
        {
            "role": "user",
            "content": "Xin chào, bạn là ai?"
        }
    ]
}'
// 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": "vpsnodelab/deepseek-v4-flash-0731",
    "messages": [
        {
            "role": "user",
            "content": "Xin chào, bạn là ai?"
        }
    ]
})
});
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": "vpsnodelab/deepseek-v4-flash-0731",
    "messages": [
        {
            "role": "user",
            "content": "Xin chào, bạn là ai?"
        }
    ]
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "vpsnodelab/deepseek-v4-flash-0731",
    "messages": [
        {
            "role": "user",
            "content": "Xin chào, bạn là ai?"
        }
    ]
}

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