Documentation Index
Fetch the complete documentation index at: https://docs.nimbleway.com/llms.txt
Use this file to discover all available pages before exploring further.
Build with Nimble
Web Search Agents that turn any website into structured knowledge for AI
See Nimble in Action
Create a Web Search Agent for any website. Get structured, real-time data
at scale.
Accurate, real-time web search with —> AI Agents search the live web to retrieve precise informationfrom nimble_python import Nimble
nimble = Nimble(api_key="YOUR-API-KEY")
result = nimble.search(
query= "latest AI developments",
focus= "general",
max_results= 5,
include_answer= True,
search_depth= "lite"
)
{
"status": "success",
"query": "latest AI developments",
"results": [
{
"title": "Latest AI Developments",
"url": "https://example.com/ai",
"snippet": "Recent breakthroughs..."
},
... and more
],
"answer": "The latest AI developments..."
}
Fast URL discovery and site structure mapping —> Easily plan extraction workflowsfrom nimble_python import Nimble
nimble = Nimble(api_key="YOUR-API-KEY")
result = nimble.map(
url= "https://www.nimbleway.com",
sitemap: "include"
)
{
"success": true,
"links": [
{
"url": "https://www.nimbleway.com",
"title": "Nimble - Web Data Platform",
"description": "AI-powered web data collection and extraction platform"
},
{
"url": "https://www.nimbleway.com/pricing",
"title": "Pricing",
"description": "Nimble pricing plans and features"
}
... and more
]
}
Extract contents from entire websites in a single request —> Collect large volumes of web data automaticallyfrom nimble_python import Nimble
nimble = Nimble(api_key="YOUR-API-KEY")
result = nimble.crawl.run(
url="https://docs.nimbleway.com/nimble-sdk",
limit=4
)
{
"crawl_id": "85b21e98-69c5-4aa5-9d25-261a55bbf0db",
"url": "https://docs.nimbleway.com/nimble-sdk",
"status": "succeeded",
"tasks": [
{
"task_id": "8d2bb2fc-e469-4549-b5d8-0d307352aeb5",
"status": "completed",
"created_at": "2026-02-11T13:55:45.846Z",
"updated_at": "2026-02-11T13:55:52.138Z"
},
... and more
]
}
Web Search Agents extract structured knowledge from any website —> Pre-built agents for popular sites, or create your own in secondsfrom nimble_python import Nimble
nimble = Nimble(api_key="YOUR-API-KEY")
result = nimble.agent.run(
agent="amazon_pdp",
params={
"asin": "B0DKB1GWML"
}
)
{
"url": "https://www.amazon.com/dp/B0DKB1GWML",
"data": {
"html": "<!doctype html><html>...",
"parsing": {
"product_title": "Apple iPhone 16 Pro Max...",
"product_description": ".....",
"brand": "Apple",
"web_price": 819.97,
"availability": true,
... and more
}
},
"metadata":{
"agent": "amazon_pdp",
"driver": "wsa-6m",
... and more
}
}
Route requests through premium residential IPs —> Scale fast with without getting blocked# Proxy connection string
PROXY=http://account-ACCOUNT-pipeline-PIPELINE-country-US:[email protected]:7000
# Request through US residential IP
curl -x $PROXY https://ipinfo.io/json
{
"ip": "123.0.0.123",
"city": "Los Angeles",
"region": "California",
"country": "US",
"loc": "34.0522,-118.2437",
"org": "AS12345 Example ISP",
"timezone": "America/Los_Angeles"
}