---
source_url: "https://www.nimbleway.com/search-api?utm_source=openai"
title: search-api
mirrored_at: 2026-09-02T01:00:59.321Z
host: www.nimbleway.com
cited_in_42a: true
mirror_canonical: "https://index.42a.ai/www.nimbleway.com/search-api__q__utm_source_openai"
---

> **Original source:** https://www.nimbleway.com/search-api?utm_source=openai

## 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.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97cd6_Group%201707488345%20\(1\).png)

![Bar chart showing response times with increasing durations from 3 seconds to 15 seconds, highlighting that 15 seconds is the slowest response time.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97cda_Graphic%20\(20\)%20\(1\).webp)

### 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:

![](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97299_purple%20star.svg)

Simple, usage-based pricing with no index-maintenance fees

![](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97299_purple%20star.svg)

Lower cost-per-result thanks to direct, live-web retrieval

![](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97299_purple%20star.svg)

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:

![](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97299_purple%20star.svg)

Fresh, verifiable, page-level truth

![](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97299_purple%20star.svg)

Citations, timestamps, and structured fields

![](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97299_purple%20star.svg)

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.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97cd9_img%20\(22\)%20\(1\).webp)

## Leverage  
Nimble’s Fleet of  
Extraction Templates 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.

![Gradient shadow with rounded corners on a dark background fading from black to deep navy blue.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf979dc_domain%20shadow%20left.avif)

### CLI and Python SDK

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

![Python](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97970_Frame%201437256274%20\(3\)%20\(1\).png)

### **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.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97940_Nimble%20%7C%20GPT%2C%20Claude%2C%20Copilot%20LangChain.webp)

![Abstract dark curved shape with a subtle glow on the left edge fading into a transparent background on the right.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf978f4_domain%20shadow%20right.avif)

### **End-to-end examples**

The [Nimble Cookbook](https://github.com/Nimbleway/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.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf979f5_Frame%201437256274%20\(2\)%20\(1\).webp)

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

](#)

![Blue shield with the word NIMBLE in the center surrounded by icons representing verified checkmark, GDPR, padlock, and AICPA SOC 2 certification badge.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf97915_tabs%20visual.avif)

![Blue web browser window icon with a white star in the center, on a rounded square background.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf978dd_embedded%20icon%201.webp)

### 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.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf9799d_embedded%20icon%202.webp)

### 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.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf978e0_embedded%20icon%203.webp)

### Structured Data for LLMs

AI-ready schema with every result

![Icon of a document with a folded corner and a checkmark badge.](https://cdn.prod.website-files.com/699c65d475d592ff4cf972a8/699c65d475d592ff4cf979a3_embedded%20icon%204.webp)

### LLM Integration-ready

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