B

Brave Search API

by Brave Free tier

Brave Search API provides access to Brave's independent search index, not relying on Google or Bing. Get web results, news, images, videos, and AI-generated summaries. Features goggles for custom re-ranking, infoboxes, FAQs, and discussions from Reddit.

web-searchindependent-indexai-summariesnewsprivacy

Quick Reference

Base URL https://api.search.brave.com/res/v1 Auth type API Key Header Auth header X-Subscription-Token: your-token Rate limit 1 request/s (free) Pricing Pay per use Free quota 2,000 queries/month (free plan) Documentation https://api.search.brave.com/app/documentation Endpoint status Server online — HTTP 422 — server is online but path returned an error (may require auth)1.68s (checked Mar 29, 2026) Builder score C 60% builder-friendly
Pricing
75
Latency
30
Depth
72

Authentication

Pass your API subscription token in the X-Subscription-Token header.

X-Subscription-Token: your-token

Pricing

Model pay-as-you-go Starting price Pay per use Free quota 2,000 queries/month (free plan)

Free: 2K queries/mo. Base: $5/mo for 20K queries. Pro: $20/mo for 200K queries. Enterprise: custom with SLA.

Key Endpoints

MethodPathDescription
GET /web/search Brave Web Search results
GET /news/search Brave News Search results
GET /images/search Brave Image Search results
GET /videos/search Brave Video Search results

Sample Request

curl "https://api.search.brave.com/res/v1/web/search?q=open+source+LLMs&count=5&result_filter=web" \
  -H "X-Subscription-Token: $BRAVE_API_KEY" \
  -H "Accept: application/json"

Sample Response

{
  "type": "search",
  "web": {
    "results": [{
      "title": "Top Open Source LLMs in 2024",
      "url": "https://example.com/llms",
      "description": "A comprehensive guide to the best...",
      "age": "2 days ago",
      "language": "en"
    }]
  },
  "query": {"original": "open source LLMs"}
}

Data sourced from API Map. Always verify pricing and rate limits against the official Brave documentation.