Skip to main content

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.

Web Search Agents extract structured knowledge from any website —> Pre-built agents for popular sites, or create your own in seconds
from 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
  }
}