Generating

꒒꒐ꏂꃳꋬꋊꍌꏂꋪ ꋬ꒐

Search the web with AI-powered intelligence

Something went wrong. Please try again.
Normal Results for:
Sources 0 sources

Try asking

What is quantum computing? Best programming languages 2025 How does AI work? Latest tech news Climate change solutions

Liebanger AI API

Integrate powerful AI search into your applications

Endpoints

GET Normal AI
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.

Parameters
q string The search query (URL encoded)
Example Request
fetch('https://se.xdativo.cloud/ai?q=what+is+javascript')
  .then(response => response.json())
  .then(data => console.log(data));
Example Response
{
  "response": "JavaScript is a high-level, interpreted programming language..."
}
GET Expert AI
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.

Parameters
q string The search query (URL encoded)
Example Request
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
  });
Example Response
{
  "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"
  ]
}
GET Autocomplete
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.

Parameters
q string Partial search query for suggestions
Example Request
fetch('https://se.xdativo.cloud/autocomplete?q=how+to')
  .then(response => response.json())
  .then(suggestions => console.log(suggestions));
Example Response
[
  "how to learn programming",
  "how to cook pasta",
  "how to invest in stocks",
  "how to build a website"
]

Frequently Asked Questions

What's the difference between Normal and Expert AI?
Normal AI provides quick, concise answers ideal for simple questions. Expert AI delivers comprehensive, detailed responses with source citations, making it perfect for research and complex queries that require verified information.
Is there a rate limit for API requests?
Yes,To mantain fair usage for everyone losingdivine has implemented 10 request per minuet rate limiting.If you want to increase rate limit contact @losingdivine on discord.
How should I format my query parameters?
Query parameters should be URL encoded. Replace spaces with + or %20. For example: ?q=what+is+javascript or ?q=what%20is%20javascript. Most HTTP libraries handle this automatically with encodeURIComponent().
What format does the API return?
All endpoints return JSON responses. The autocomplete endpoint returns an array of strings. The Normal AI returns a response object with the answer. The Expert AI returns both the response and an array of source URLs used to generate the answer.
Can I use the API for commercial projects?
Yes, the API can be used for commercial projects. We recommend reaching out for enterprise usage to ensure you have appropriate rate limits and support for your application's needs.
How do I implement autocomplete efficiently?
Use debouncing to avoid making requests on every keystroke. Wait for the user to pause typing (typically 400-600ms) before sending the request. This reduces server load and provides a smoother user experience. Only fetch suggestions when the query is at least 2-3 characters long.