Fast search is the default mode. It returns results in approximately 1 second, making it suitable for real-time applications and high-volume workloads.
curl "https://search-api.andisearch.com/api/v1/search?q=latest+AI+news" \
-H "x-api-key: YOUR_API_KEY"
Fast search is the default — no depth parameter is needed. Setting depth=fast explicitly has the same effect.
When to use fast search
- Real-time search in user-facing applications
- High-volume automated queries
- AI agents that need quick answers
- Applications where latency matters more than exhaustive coverage
Example response
{
"results_type": "news",
"answer": "",
"type": "news",
"title": "latest AI news",
"results": [
{
"title": "Latest AI News and Developments",
"link": "https://example.com/ai-news",
"desc": "A roundup of the latest developments in artificial intelligence...",
"source": "example.com",
"type": "news"
}
],
"metrics": {
"query": "latest AI news",
"intent": "LatestNewsIntent",
"duration": 890,
"results_returned": 10,
"total_results_found": 50
}
}
Fast search vs. deep search
| Fast search | Deep search |
|---|
| Response time | ~1 second | ~2–3 seconds |
| Spell correction | No | Yes |
| Source coverage | Standard | Extended |
| Analysis depth | Standard | Enhanced |
Start with fast search. Switch to deep search only when you need spell correction, broader coverage, or enhanced analysis.