Brave Local API

The Local API from Brave — 2 operation(s) for local.

Operations 2

GET /local/pois Local POI search #
GET /local/descriptions Local descriptions #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/brave-browser-local-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

brave-browser-local-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Brave Search Images Local API
  description: The Brave Search API provides programmatic access to Brave's independent search index covering web, news, image, video, suggest, spellcheck, summarizer, and local POI endpoints. Requests authenticate via the X-Subscription-Token header issued through the Brave Search API dashboard.
  version: '1.0'
  contact:
    name: Brave Search API
    url: https://api-dashboard.search.brave.com/app/documentation
servers:
- url: https://api.search.brave.com/res/v1
  description: Production API
security:
- SubscriptionToken: []
tags:
- name: Local
paths:
  /local/pois:
    get:
      summary: Local POI search
      description: Retrieve local point-of-interest details by IDs (up to 20).
      operationId: localPois
      tags:
      - Local
      parameters:
      - name: ids
        in: query
        required: true
        schema:
          type: array
          items:
            type: string
          maxItems: 20
        style: form
        explode: true
      - name: search_lang
        in: query
        schema:
          type: string
      - name: ui_lang
        in: query
        schema:
          type: string
      responses:
        '200':
          description: POI details
          content:
            application/json:
              schema:
                type: object
  /local/descriptions:
    get:
      summary: Local descriptions
      description: AI-generated descriptions for local POIs by IDs.
      operationId: localDescriptions
      tags:
      - Local
      parameters:
      - name: ids
        in: query
        required: true
        schema:
          type: array
          items:
            type: string
          maxItems: 20
        style: form
        explode: true
      - name: search_lang
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Descriptions
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    SubscriptionToken:
      type: apiKey
      in: header
      name: X-Subscription-Token