Google Maps Data API
Extract structured public business information from Google Maps searches for market research, lead discovery and location-based analysis.
What it returns
A single request returns a structured list of businesses matching a search query, with consistent fields ready to use in analysis, prospecting or software integrations. Data is collected from public Google Maps results.
Available data fields
Fields listed below are supported by the API. A small number depend on the extraction engine or source availability.
| Field | Description | Key |
|---|---|---|
| Business name | Public name of the place | nome |
| Category | Primary business category | categoria |
| Address | Full public address | endereco |
| Business hours | Current opening status / hours | horario |
| Price range | Price level, where available | faixa_preco |
| Rating | Aggregate rating, where available | nota |
| Phone / WhatsApp | Public contact, where available | whatsapp |
| Short description | Place summary, where available | descricao_curta |
| Photos | Public image URLs | fotos |
| Accessibility | Accessibility attributes, where available | acessibilidade |
| Business types | Detailed type tags | tipos |
| Place ID | Stable unique identifier | place_id |
Review count is returned by the browser-based engine on demand; it is not part of the default fast response.
Example response
Representative JSON response for a search query.
{
"success": true,
"count": 1,
"data": [
{
"nome": "Blue Harbour Coffee",
"nota": "4.7",
"categoria": "Coffee shop",
"endereco": "142 Market St, San Francisco, CA",
"horario": "Open - Closes 7PM",
"faixa_preco": "$$",
"whatsapp": "+1 415-555-0142",
"tipos": ["coffee_shop", "food"],
"descricao_curta": "Specialty coffee and fresh pastries",
"fotos": ["https://lh3.googleusercontent.com/..."],
"acessibilidade": ["Wheelchair accessible entrance"],
"place_id": "ChIJN1t_tDeuEmsRUsoyG83frY4"
}
]
}
How it works
1. Request access
Contact us to receive an API token during the early access period.
2. Query
Send a search query (and optional location and limits) to the endpoint.
3. Integrate
Receive structured JSON ready for your application or pipeline.
Full public documentation will be published as the API stabilizes. The API currently requires authentication and is not openly available.