Search API
Execute a search queries using Nimble Search
Basic Usage
Fast Mode Search
curl -X POST https://nimble-retriever.webit.live/search \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "latest AI trends 2025",
"max_results": 10,
"deep_search": false,
"country": "US",
"locale": "en"
}'{
"results": [
{
"title": "Latest GenAI Trends: 5 Key Developments to Watch",
"description": "Explore the top trends in generative AI including agentic AI, retrieval-augmented generation, self-training models, and ethical AI implementations.",
"url": "https://example.com/genai-trends-2025",
"content": "",
"metadata": {
"position": 1,
"entity_type": "OrganicResult",
"country": "US",
"locale": "en"
}
},
{
"title": "GenAI Investment and Market Analysis 2025",
"description": "Despite challenges, investment in generative AI continues to grow. Analysis of market trends, adoption rates, and future projections for enterprise AI.",
"url": "https://example.com/genai-investment-analysis",
"content": "",
"metadata": {
"position": 2,
"entity_type": "OrganicResult",
"country": "US",
"locale": "en"
}
}
]
}Fast Mode with - Include Answer
Include AnswerResponse:
Deep Search
Request Body Parameters
Parameter
Type
Required
Default
Description
Best Practices
End-to-end examples
Last updated
