The Search API enables you to perform web searches and automatically retrieve clean, parsed content from results. Choose between fast URL discovery or deep content extraction with automatic parsing.
For comprehensive details, parameters, and advanced features, see the Search Usage page.
API endpoint
POST https://api.webit.live/api/v1/search
Installation
# pip install nimble-py
from nimble import Nimble
nimble = Nimble(api_key="YOUR-API-KEY")
Basic search
Use nimble.search() to perform a web search and get results.
from nimble import Nimble
# Initialize client
nimble = Nimble(api_key="YOUR-API-KEY")
result = nimble.search({
"query": "best web scraping tools 2026",
"max_results": 10
})
print(result)
Response
{
"status": "success",
"data": {
"query": "best web scraping tools 2026",
"results": [
{
"position": 1,
"title": "Top 10 Web Scraping Tools for 2026",
"description": "Comprehensive guide to the best web scraping tools...",
"url": "https://example.com/scraping-tools-2026",
"domain": "example.com"
}
],
"total_results": 10
},
"metadata": {
"country": "US",
"execution_time_ms": 850,
"credits_used": 1
}
}