Skip to main content
1

Sign Up and Login

First, create your nimble account at Nimble Sign Up.Already have an account? Just login to Nimble dashboard.
2

Get Your API Key

Now, obtain your API key from the Account Settings.
3

Installation

Install the Nimble SDK in your preferred language:
pip install nimble_python
Prefer using the API directly? Skip the SDK installation and use HTTP requests (see cURL examples below) or visit the API Reference for complete endpoint documentation.
4

Quick Examples

ExtractGet clean HTML and structured data from any URL:
from nimble_python import Nimble

nimble = Nimble(api_key="YOUR-API-KEY")

result = nimble.extract(
    url= "https://www.example.com",
    render= True
)

print(result)
Web Search AgentsUse pre-built templates for popular platforms:
from nimble_python import Nimble

nimble = Nimble(api_key="YOUR-API-KEY")

result = nimble.agent.run(
    agent= "amazon_pdp",
    params= {
        "asin": "B08N5WRWNW"
    }
)

print(result)
SearchPerform web searches and get structured results:
from nimble_python import Nimble

nimble = Nimble(api_key="YOUR-API-KEY")

result = nimble.search(
    query= "data scraping tools",
    country= "US"
)

print(result)
MapFast URL discovery and site structure mapping:
from nimble_python import Nimble

nimble = Nimble(api_key="YOUR-API-KEY")

result = nimble.map(
    URL= "https://www.example.com",
    sitemap= "only"
)

print(result)
CrawlDiscover and map entire websites automatically:
from nimble_python import Nimble

nimble = Nimble(api_key="YOUR-API-KEY")

result = nimble.crawl.run(
    url= "https://www.example.com",
    limit= 100
)

print(result)
Ready to build something real?

Build Your First Agent

End-to-end tutorial: use the Nimble Agents skill to build a competitive analysis script for shoes across Amazon, Walmart, and Nike