Place search (POIs, cities, addresses, streets)
brave_place_searchSearches Brave's Place Search API. A single call may populate any combination of results (POIs), cities, addresses, streets, and location (the resolved search area), depending on the query shape. Use for POIs near coordinates or a named area, browsing general POIs (omit query, supply coords or location), disambiguating bare city names, resolving specific addresses, or looking up streets. Anchor via latitude+longitude or location; with neither, query is required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Number of results (max 50, default 20). | |
| query | No | Query string. Shape influences the response: POI-like queries return `results`; ambiguous city names return `cities`; address-/street-shaped queries with a geographic anchor return `addresses` and/or `streets`. Omit to browse general POIs in the supplied area. Required if neither `latitude`+`longitude` nor `location` is provided. | |
| units | No | Units of measurement for distance values. | |
| geoloc | No | Optional geolocation token used to refine results. | |
| radius | No | Bias toward results closer to the supplied coordinates, in meters. NOT a hard cutoff. | |
| country | No | 2-letter country code (ISO 3166-1 alpha-2). Defaults to US. | |
| ui_lang | No | User interface language for the response, in the form <lang>-<country> (e.g. en-US). | |
| latitude | No | Latitude of the geographical coordinates to search around (-90 to 90). Typically paired with `longitude`. | |
| location | No | Location string used as an alternative to lat/long. US: '<city> <state> <country>' (e.g. 'san francisco ca united states'). Non-US: '<city> <country>' (e.g. 'tokyo japan'). Capitalization and commas don't matter. | |
| longitude | No | Longitude of the geographical coordinates to search around (-180 to 180). Typically paired with `latitude`. | |
| safesearch | No | Filter level for adult content. | |
| spellcheck | No | Whether to spellcheck the query. | |
| search_lang | No | 2-letter language code for the search. Defaults to en. |