Overture-backed places
Search a hosted index built from Overture Places data, currently covering 39 million places across 19 selected countries and territories.
Places API
Open Places API returns Overture-backed place results through one authenticated HTTP endpoint. Search by text, list a category in an area, filter by confidence, and keep the JSON in your product.
The API is intentionally narrow: one endpoint, bearer authentication, quota headers, and JSON results. Use
q for text search, or use category with offset to page through an area
list. Each page is one search against your hard monthly cap.
curl -G "https://api.openplacesapi.com/v1/places" \
--data-urlencode "category=cafe" \
--data-urlencode "lat=40.7128" \
--data-urlencode "lon=-74.0060" \
--data-urlencode "radius_mi=25" \
--data-urlencode "limit=50" \
--data-urlencode "min_confidence=0.85" \
-H "Authorization: Bearer $OPEN_PLACES_API_KEY" Search a hosted index built from Overture Places data, currently covering 39 million places across 19 selected countries and territories.
List every returned place in a category within a radius, page by page, without a 60-result search cap.
Results come from permissive open licenses, so you can cache, store, redistribute, and mix them with your own data.
Results include names, coordinates, distance, categories, addresses, confidence, and available phone, website, and operating status.
Use min_confidence to filter noisy records, and inspect the returned confidence value when you keep everything.
Add account-owned place records, corrections, suppressions, and presets on top of the shared base layer.
| Good fit | Probably not a fit |
|---|---|
| Lead-gen area lists, listing enrichment, entity matching, marketplaces, CRMs, operations tools, and local search workflows. | Turn-by-turn routing, map tiles, mobile SDKs, autocomplete widgets, or global address validation. |
| Teams that need cacheable open-data results, confidence filtering, and predictable pricing. | Teams that need ratings, reviews, opening hours, photos, or every feature of a full maps platform. |
A Places API lets software search for real-world places, such as businesses, landmarks, venues, and addresses, and return structured JSON that an application can use.
Open Places API is focused on place search near a latitude and longitude. It is not trying to replace a full geocoding, routing, tiles, or mobile maps SDK.
The public API is designed for server-side calls with a bearer API key. Browser frontends should call your backend so the API key stays private.
It can replace Google Places for products that only need backend place search and JSON results. It is narrower than Google Maps Platform by design.