v1.0.0
/webThis API allows users to search for any information over the web. This replicates a typical search engine experience, where users can search for any information they need.
Base URL
https://api.desearch.aiquerystringrequiredThe search query string, e.g., 'latest news on AI'.
startintegerHow many results to skip. It's used for pagination. (e.g., 0 (default) is the first page of results, 10 is the 2nd page of results, 20 is the 3rd page of results, etc.).
Default: 0
Your API key will be sent in the Authorization header
curl -X GET "https://api.desearch.ai/web?query=latest+news+on+AI" \
-H "Authorization: YOUR_API_KEY" \
-H "Content-Type: application/json"{
"data": [
{
"title": "Title",
"snippet": "Snippet",
"link": "https://example.com"
}
]
}Possible status codes: