Qwen
Qwen Embed

cuong5a115a11/Qwen3-embedding-8b

Model ID: cuong5a115a11/Qwen3-embedding-8b
Family
Qwen
Context
Not specified
Input / 1M tokens
0.023 USD
Requests
20
Success
100.0%
Tokens
9.3K
Uptime
24h agoNow
7 days agoNow

Pricing

Input / 1M tokens
0.023 USD
Output / 1M tokens
0 USD
Cost estimator
Estimated total 0 USD
Average / request 0 USD

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

Supported endpoints
https://api.xah.io/v1/embeddings
Method POST · application/json
Auth Bearer token (API key)
API kinds Embed

Share

curl 'https://api.xah.io/v1/embeddings' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "cuong5a115a11/Qwen3-embedding-8b",
    "input": "The quick brown fox jumps over the lazy dog"
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/embeddings', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "cuong5a115a11/Qwen3-embedding-8b",
    "input": "The quick brown fox jumps over the lazy dog"
})
});
const data = await res.json();
console.log(data);
import requests

url = 'https://api.xah.io/v1/embeddings'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = {
    "model": "cuong5a115a11/Qwen3-embedding-8b",
    "input": "The quick brown fox jumps over the lazy dog"
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "cuong5a115a11/Qwen3-embedding-8b",
    "input": "The quick brown fox jumps over the lazy dog"
}
Reviews & comments
0.0 / 0 reviews
Loading reviews...
Contact Support
We are always ready to help you