अन्य
अन्य SEARCH

search

Model ID: search
मॉडल परिवार
अन्य
Context
निर्दिष्ट नहीं
प्रति अनुरोध
0.0335 ₹
अनुरोध
33
सफलता
100.0%
Tokens
1.6K
अपटाइम
24 घंटे पहलेअभी
7 दिन पहलेअभी

मूल्य निर्धारण

प्रति अनुरोध
0.0335 ₹
मूल्य इतिहास

पहले लागू किए गए मूल्य स्तर। "current" चिह्नित पंक्ति वर्तमान मूल्य है।

वर्तमान से 09/08/2026 - 20:26:59
प्रति अनुरोध0.0335 ₹
समर्थित एंडपॉइंट
https://api.xah.io/v1/search
विधि POST · application/json
प्रमाणीकरण Bearer token (API key)
API किस्में SEARCH

साझा करें

curl 'https://api.xah.io/v1/search' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "search",
    "query": "What is the latest news about AI?",
    "search_type": "web",
    "max_results": 5,
    "country": "Vietnam",
    "language": "Vietnam"
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/search', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "search",
    "query": "What is the latest news about AI?",
    "search_type": "web",
    "max_results": 5,
    "country": "Vietnam",
    "language": "Vietnam"
})
});
const data = await res.json();
console.log(data);
import requests

url = 'https://api.xah.io/v1/search'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = {
    "model": "search",
    "query": "What is the latest news about AI?",
    "search_type": "web",
    "max_results": 5,
    "country": "Vietnam",
    "language": "Vietnam"
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "search",
    "query": "What is the latest news about AI?",
    "search_type": "web",
    "max_results": 5,
    "country": "Vietnam",
    "language": "Vietnam"
}
आज़माएँ

यह मॉडल टेक्स्ट चैट का समर्थन नहीं करता, इसलिए इसे यहाँ नहीं आज़माया जा सकता।

समीक्षाएँ और टिप्पणियाँ
0.0 / 0 समीक्षाएँ
समीक्षाएँ लोड हो रही हैं...
सहायता से संपर्क करें
हम हमेशा आपकी मदद के लिए तैयार हैं