Qwen
Qwen Embed

adminsgehdt/Qwen3-Embedding-4B

Model ID: adminsgehdt/Qwen3-Embedding-4B
Family
Qwen
Context
Not specified
Input / 1M tokens
0.0288 $
Requests
0
Success
Tokens
0
Uptime
24h agoNow
7 days agoNow

Pricing

Input / 1M tokens
0.0288 $
Output / 1M tokens
0 $
Price history

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

Current Since 19/08/2026 - 09:34:08
Input / 1M tokens0.0288 $ Output / 1M tokens0 $
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/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": "adminsgehdt/Qwen3-Embedding-4B",
    "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": "adminsgehdt/Qwen3-Embedding-4B",
    "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": "adminsgehdt/Qwen3-Embedding-4B",
    "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": "adminsgehdt/Qwen3-Embedding-4B",
    "input": "The quick brown fox jumps over the lazy dog"
}
Try it

This model does not support text chat, so it can\'t be tried here.

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