APIs

Google Maps Data API

Extract structured public business information from Google Maps searches for market research, lead discovery and location-based analysis.

Early Access — requires an API token

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.

FieldDescriptionKey
Business namePublic name of the placenome
CategoryPrimary business categorycategoria
AddressFull public addressendereco
Business hoursCurrent opening status / hourshorario
Price rangePrice level, where availablefaixa_preco
RatingAggregate rating, where availablenota
Phone / WhatsAppPublic contact, where availablewhatsapp
Short descriptionPlace summary, where availabledescricao_curta
PhotosPublic image URLsfotos
AccessibilityAccessibility attributes, where availableacessibilidade
Business typesDetailed type tagstipos
Place IDStable unique identifierplace_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.

  GET /scrape?query=coffee+shop
{
  "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.