Scrapingdog

Google Maps Places API

The Google Maps Places API retrieves a complete business profile for a specific location. Returns ratings, GPS coordinates, operating hours, service options, amenities, accessibility features, and payment methods.

Endpoint: https://api.scrapingdog.com/google_maps/places

API Parameters

🔑

Authentication

  • api_key Required
    Your personal API key. Available on your dashboard

    Type: String
🔗

Request Parameters

  • type Required
    The parameter must be set to place (i.e., type=place). It is not required when using place_id.

    Type: String
  • data_id Required
    It is the Google Maps data ID. You can get this by entering the location name as the query in our Google Maps API.

    Type: String
  • place_id Optional
    The parameter uniquely identifies a place on Google Maps. Place IDs are available for most locations, including businesses, landmarks, parks, and intersections. You can retrieve the place_id using our Google Maps API.

    The place_id can be used independently without any other optional parameters.

    Type: String
  • country Optional
    This is the ISO code of the country from which you are seeking the results. Default: us. For a full list, see the Google Country Parameter.

    Type: String

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/google_maps/places?api_key=APIKEY&place_id=ChIJT2h1HKZZwokR0kgzEtsa03k"
API Response
{
  "title": "Blue Bottle Coffee",
  "rating": 4.5,
  "reviews": 1568,
  "gps_coordinates": { "latitude": 40.7455096, "longitude": -74.0083012 },
  "type": ["Coffee shop", "Cafe"],
  "address": "450 W 15th St, New York, NY 10011",
  "phone": "+1 212-989-2494",
  "website": "https://bluebottlecoffee.com/",
  "operating_hours": {
    "Monday": "7 AM–7 PM",
    "Tuesday": "7 AM–7 PM",
    "Wednesday": "7 AM–7 PM",
    "Thursday": "7 AM–7 PM",
    "Friday": "7 AM–7 PM",
    "Saturday": "8 AM–6 PM",
    "Sunday": "8 AM–6 PM"
  },
  "service_options": { "dine_in": true, "takeout": true, "delivery": false },
  "amenities": { "wifi": true, "restroom": true, "seating": true },
  "accessibility": { "wheelchair_accessible_entrance": true, "wheelchair_accessible_seating": true },
  "payment_options": { "credit_cards": true, "debit_cards": true, "nfc_mobile_payments": true }
}