꒒꒐ꏂꃳꋬꋊꍌꏂꋪ ꋬ꒐
Search the web with AI-powered intelligence
Liebanger AI
Search the web with AI-powered intelligence
Integrate powerful AI search into your applications
https://se.xdativo.cloud/ai?q={query}
Standard AI-powered search that returns a concise, informative response based on web search results. Best for quick answers and general queries.
fetch('https://se.xdativo.cloud/ai?q=what+is+javascript') .then(response => response.json()) .then(data => console.log(data));
{
"response": "JavaScript is a high-level, interpreted programming language..."
}
https://se.xdativo.cloud/expert?q={query}
Advanced AI search with comprehensive responses and source citations. Returns detailed answers along with the URLs of sources used. Ideal for research and in-depth queries.
fetch('https://se.xdativo.cloud/expert?q=climate+change+effects') .then(response => response.json()) .then(data => { console.log(data.response); // AI response console.log(data.urls); // Source URLs });
{
"response": "Climate change has far-reaching effects...",
"urls": [
"https://www.nasa.gov/climate-change",
"https://www.un.org/climate-action",
"https://www.ipcc.ch/reports"
]
}
https://se.xdativo.cloud/autocomplete?q={query}
Get search suggestions based on partial input. Returns an array of suggested queries to help users complete their search. Perfect for building search-as-you-type interfaces.
fetch('https://se.xdativo.cloud/autocomplete?q=how+to') .then(response => response.json()) .then(suggestions => console.log(suggestions));
[ "how to learn programming", "how to cook pasta", "how to invest in stocks", "how to build a website" ]
+ or %20.
For example: ?q=what+is+javascript or ?q=what%20is%20javascript.
Most HTTP libraries handle this automatically with encodeURIComponent().