HomeSearch APIs › Brave Search

Brave Search API — pricing, free tier & how to get a key

The Brave Search API gives you independent web search results from Brave's own index (not a Google or Bing reseller), which makes it popular for RAG, AI agents and apps that need fresh, privacy-respecting web data. Pricing is per 1,000 queries. Here's the cost, the free tier, and how to get a key.

Brave Search API pricing (reference, June 2026)

PlanPriceLimits
Free free tier$02,000 queries / mo, 1 query / sec
Base (Web)~$3 / 1,000 querieshigher rate limit, pay-as-you-go
Pro / AI plans~$5+ / 1,000extra snippets & data for AI use
⚠️ Reference prices, June 2026 — plans and per-thousand rates change. Confirm on brave.com/search/api. Different endpoints (Web, Local, News, Suggest) and AI-grounding tiers are priced separately.

The free tier

The free plan covers up to 2,000 queries per month at 1 query per second — enough to prototype a search feature or a small AI agent. It uses Brave's independent index, so you're not rate-bound to a third-party search engine. When you need more throughput or AI-grounding snippets, the Base plan starts around $3 per 1,000 queries, billed as you go.

How to get a Brave Search API key (step by step)

1. Sign up at api-dashboard.search.brave.com.
2. Subscribe to a plan — the free plan is selectable; paid plans ask for a card.
3. Go to API Keys and generate a subscription token.
4. Send it in the X-Subscription-Token header on each request.

Run a web search:

# replace $BRAVE_TOKEN
curl -s "https://api.search.brave.com/res/v1/web/search?q=api+cost+calculator" \
-H "Accept: application/json" \
-H "X-Subscription-Token: $BRAVE_TOKEN"

Cheaper / alternative options

SerpApi (see our SerpApi guide) scrapes Google/Bing results and is great when you specifically need Google's SERP, but costs more per query. Bing Web Search is being retired/repriced by Microsoft, pushing many builders toward independent indexes. Firecrawl (guide) is for crawling and scraping specific pages rather than searching the web. For most AI-grounding use cases, Brave's own index at ~$3/1,000 is one of the cheapest real-web options.

FAQ

Does the Brave Search API have a free tier?

Yes — 2,000 queries/month at 1 query/second, using Brave's independent web index. Good for prototypes and small apps.

How do I get a Brave Search API key?

Sign up at api-dashboard.search.brave.com, pick a plan, then generate a subscription token under API Keys and send it in the X-Subscription-Token header.

Is Brave Search cheaper than SerpApi?

Usually yes per query — Brave's Base plan is ~$3/1,000 queries. SerpApi costs more but returns actual Google/Bing SERP data. Choose Brave for independent web results, SerpApi when you must mirror Google.

Is the Brave Search API good for RAG and AI agents?

Yes — it's a common choice for grounding LLMs because it returns fresh, independent web results and offers AI-oriented plans with extra snippet data. Model the rest of a retrieval pipeline with our RAG cost calculator.

Not affiliated with Brave. Prices are reference estimates — always verify on the official pricing page.