FINDAPI
Search documentation...
ENDPOINTS / Search Query
Search Query
Execute an AI-powered search query and retrieve synthesised intelligence results with source attribution.
POST/api/search/classify
Authentication Required — Include your API key in the Authorization header: Bearer YOUR_API_KEY
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | ✓ Yes | The search query to execute |
| mode | string | No | Search mode: "ai" or "broad" (default: "ai") |
| limit | number | No | Max results to return (default: 10, max: 50) |
| sources | boolean | No | Include source attribution (default: true) |
Response Object
{
"success": true,
"data": {
"query": "Nigeria tech ecosystem 2026",
"mode": "ai",
"action": "ai_interact",
"aiResponse": "Nigeria's tech ecosystem...",
"sources": [
{ "title": "...", "url": "...", "domain": "techcabal.com", "snippet": "..." }
],
"followUps": ["What is Lagos startup funding?", "..."],
"searchTime": 1.24
}
}