Other
Other Embed

mainnewnol/text-embedding-3-small

Model ID: mainnewnol/text-embedding-3-small
Family
Other
Context
Not specified
Minimum charge / request
0.000192 $
Requests
1
Success
100.0%
Tokens
1
Uptime 100.00%
24h agoNow
7 days agoNow

Pricing

Input / 1M tokens
0.048 $
Output / 1M tokens
0 $
Minimum charge / request
0.000192 $
Price history

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

Current Since 18/08/2026 - 21:38:32
Input / 1M tokens0.048 $ Output / 1M tokens0 $ Minimum charge / request0.000192 $
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": "mainnewnol/text-embedding-3-small",
    "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": "mainnewnol/text-embedding-3-small",
    "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": "mainnewnol/text-embedding-3-small",
    "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": "mainnewnol/text-embedding-3-small",
    "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