Nimble Search API

Turn Every Agent Into a World-Class Web Researcher

Give your AI the ability to browse the live web in real time, delivering far more accurate, source-grounded data at a fraction of the cost of other tools.

Nimble Search API finds the truth where it actually lives, without the expensive overhead of index-based engines.

Search bar under Nimble logo with placeholder text 'Compare Amazon and Target prices' and six colorful app icons below.
Bar chart showing response times with increasing durations from 3 seconds to 15 seconds, highlighting that 15 seconds is the slowest response time.

Pricing That’s
Built for Scale

Nimble’s Search API is priced for high-volume, production-grade agent workloads, giving you predictable economics, transparent metering, and dramatically lower cost-per-page:

Simple, usage-based pricing with no index-maintenance fees
Lower cost-per-result thanks to direct, live-web retrieval
Pay only for successful queries returned with structured data

Unleash Agents That Think With Live, Deep Web Context

Nimble’s Search API pulls information directly from the live web, producing the most accurate real-time results available; without paying index-maintenance premiums.Your agents get:

Fresh, verifiable, page-level truth
Citations, timestamps, and structured fields
Higher accuracy with dramatically lower cost-per-query

Other APIs return cached summaries. Nimble returns the actual data, in real time, for a fraction of the price.

Search interface of Nimble MCP showing latest promotions across Amazon and Target with a list of deal titles and URLs from various websites.

Enabling Your Agents to Search, Extract, and Structure the Web

Use our REST APIs, connect our MCP server, or install our official integrations (LangChain, AI-SDK) to give your agents everything they need to navigate web pages, extract meaning, and return structured insights instantly.

Leverage
Nimble’s Fleet of
Web Search Agents and Sub-Agents

Nimble’s Search API includes site-specialized sub-agents trained to navigate specific domains.

Each sub-agent knows how a particular site is structured, what to click, and how to extract the right data, enabling the streaming of precise, structured results without custom code.

Connect Your AI Stack
to the Web in Minutes

Gradient shadow with rounded corners on a dark background fading from black to deep navy blue.

CLI and Python SDK

Get started in minutes with simple command-line tools and async Python clients that make calling MCP endpoints straightforward.

Python

Prebuilt integrations

Nimble's MCP server connects effortlessly to popular AI platforms like Claude Desktop, Cursor, and Qodo - no custom setup required.

Nimble to any AI Apps such as Claude, Qodo, Cursor, and CoPilot, or enhance custom Web Agents on frameworks including LangChain, LlamaIndex, Agno, Autogen, etc.
Abstract dark curved shape with a subtle glow on the left edge fading into a transparent background on the right.

End-to-end examples

The Nimble Cookbook offers hands-on guides that show you how to use MCP data for real use cases like LLM grounding, real-time web extraction, and AI workflow automation.

Three dark blue square touchscreens with white icons: overlapping circles on the left, horizontal lines in the center, and a parabola graph on the right.

Get Started Quickly with Nimble’s Cookbook

Copy code

from langchain_nimble import NimbleSearchTool
from langchain.agents import create_agent

agent = create_agent(model="gpt-5.2", tools=[NimbleSearchTool()])
response = agent.invoke({"messages": [{
    "role": "user", "content": "Latest Holiday Deals"
}]})
print(response)

Copy code

const response = await fetch("https://nimble-retriever.webit.live/search", {
    method: "POST",
    headers: {
        "Authorization": `Bearer ${process.env.NIMBLE_API_KEY}`,
        "Content-Type": "application/json",
    },
    body: JSON.stringify({
        query: "Latest Holiday Deals",
    })
});
const data = await response.json();
console.log(data);

Copy code

import os
import requests
response = requests.post(
    "https://nimble-retriever.webit.live/search",
    headers={
        "Authorization": f"Bearer {os.environ.get('NIMBLE_API_KEY')}",
        "Content-Type": "application/json",
    },
    json={
        "query": "Latest Holiday Deals",
    }
)
print(response.json())

Copy code

curl https://nimble-retriever.webit.live/search \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer NIMBLE_API_KEY" \
  -d '{
    "query": "Latest Holiday Deals",
  }'
Get a Demo

The Fastest Path to Web-Connected AI

Blue web browser window icon with a white star in the center, on a rounded square background.

Web Scraping at Scale

Headless browsers render JS, extract key fields, and return accurate data fast

Purple abstract butterfly shape inside a rounded square with gradient light blue and white background.

Zero Setup

Use Nimble’s hosted MCP Server – no need to install locally

Icon with three vertical bars of varying heights representing a bar chart inside a rounded square with a gradient blue background.

Structured Data for LLMs

AI-ready schema with every result

Icon of a document with a folded corner and a checkmark badge.

LLM Integration-ready

Works natively with OpenAI, Anthropic, Vercel AI SDK, LangChain, and more

One Integration. Infinite Context.

Whether you're crafting your first AI assistant or scaling a production-grade agentic system, Nimble delivers the real-time web context your models need to reason, act, and adapt.