google_maps_places
Retrieve complete business profiles from Google Maps, including operating hours, service options, amenities, accessibility features, and payment methods.
Instructions
Retrieves a complete business profile for a specific Google Maps location, including operating hours, service options, amenities, accessibility features, and payment methods. [Credits: Not explicitly stated on this page (see general Scrapingdog credit pricing).] Notes: Two lookup modes: (1) type=place plus data_id, or (2) place_id alone. The docs list type and data_id as Required, but place_id is documented as independently usable without the other optional parameters, effectively making it an alternative required-parameter path. Returns: JSON object (single place) with title, rating, reviews (count), gps_coordinates {latitude, longitude}, type[], address, phone, website, operating_hours (per weekday), service_options {dine_in, takeout, delivery}, amenities {wifi, restroom, seating}, accessibility {wheelchair_accessible_entrance, wheelchair_accessible_seating}, payment_options {credit_cards, debit_cards, nfc_mobile_payments}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Must be set to `place` (type=place). Not required when using place_id instead. | |
| country | No | ISO country code for the results. See Google Country Parameter documentation for full list. (default: us) | |
| data_id | Yes | The Google Maps data ID for the location, obtained from the google_maps_search endpoint. Required unless place_id is used instead. | |
| place_id | No | Uniquely identifies a place on Google Maps; obtainable via the google_maps_search endpoint. Can be used independently without any other optional parameters (i.e., in place of type+data_id). |