Make your first Andi Search API call in minutes.
Get your API key
Make your first request
x-api-key
curl "https://search-api.andisearch.com/api/v1/search?q=what+is+RAG" \ -H "x-api-key: YOUR_API_KEY"
Read the response
results
title
link
desc
source
{ "results_type": "search", "answer": "", "type": "search", "title": "what is RAG", "results": [ { "title": "Retrieval-Augmented Generation (RAG) Explained", "link": "https://example.com/rag-explained", "desc": "RAG combines a retrieval system with a language model to generate responses grounded in retrieved documents.", "source": "example.com", "type": "website" } ], "metrics": { "query": "what is RAG", "intent": "FallbackSearchIntent", "duration": 234, "results_returned": 10, "total_results_found": 42 } }