place Details

GET https://maps.googleapis.com/maps/api/place/details/json?place_id=ChIJLU7jZClu5kcR4PcOOO6p3I0

The Places API is a service that returns information about places using HTTP requests. Places are defined within this API as establishments, geographic locations, or prominent points of interest.

Request Params

KeyDatatypeRequiredDescription
place_idstring(Required) A textual identifier that uniquely identifies a place, returned from a Place Search.
For more information about place IDs, see the place ID overview.
fieldsstring<div class="caution"> Caution: Place Search requests and Place Details requests do not return the same fields. Place Search requests return a subset of the fields that are returned by Place Details requests. If the field you want is not returned by Place Search, you can use Place Search to get a <code>place_id</code>, then use that Place ID to make a Place Details request. For more information on the fields that are unavailable in a Place Search request, see <a href="https://developers.google.com/maps/documentation/places/web-service/place-data-fields#places-api-fields-support&quot;&gt;Places API fields support</a>.</div>

Use the fields parameter to specify a comma-separated list of place data types to return. For example: fields=formatted_address,name,geometry. Use a forward slash when specifying compound values. For example: opening_hours/open_now.

Fields are divided into three billing categories: Basic, Contact, and Atmosphere. Basic fields are billed at base rate, and incur no additional charges. Contact and Atmosphere fields are billed at a higher rate. See the pricing sheet for more information. Attributions, html_attributions, are always returned with every call, regardless of whether the field has been requested.

Basic

The Basic category includes the following fields: address_component, adr_address, business_status, formatted_address, geometry, icon, icon_mask_base_uri, icon_background_color, name, permanently_closed (deprecated), photo, place_id, plus_code, type, url, utc_offset, vicinity.

Contact

The Contact category includes the following fields: formatted_phone_number, international_phone_number, opening_hours, website

Atmosphere

The Atmosphere category includes the following fields: price_level, rating, review, user_ratings_total. | | sessiontoken | string | | A random string which identifies an autocomplete session for billing purposes.

The session begins when the user starts typing a query, and concludes when they select a place and a call to Place Details is made. Each session can have multiple queries, followed by one place selection. The API key(s) used for each request within a session must belong to the same Google Cloud Console project. Once a session has concluded, the token is no longer valid; your app must generate a fresh token for each session. If the sessiontoken parameter is omitted, or if you reuse a session token, the session is charged as if no session token was provided (each request is billed separately).

We recommend the following guidelines:

  • Use session tokens for all autocomplete sessions.
  • Generate a fresh token for each session. Using a version 4 UUID is recommended.
  • Ensure that the API key(s) used for all Place Autocomplete and Place Details requests within a session belong to the same Cloud Console project.
  • Be sure to pass a unique session token for each new session. Using the same token for more than one session will result in each request being billed individually. | | language | string | | The language in which to return results.
  • See the list of supported languages. Google often updates the supported languages, so this list may not be exhaustive.
  • If language is not supplied, the API attempts to use the preferred language as specified in the Accept-Language header.
  • The API does its best to provide a street address that is readable for both the user and locals. To achieve that goal, it returns street addresses in the local language, transliterated to a script readable by the user if necessary, observing the preferred language. All other addresses are returned in the preferred language. Address components are all returned in the same language, which is chosen from the first component.
  • If a name is not available in the preferred language, the API uses the closest match.
  • The preferred language has a small influence on the set of results that the API chooses to return, and the order in which they are returned. The geocoder interprets abbreviations differently depending on language, such as the abbreviations for street types, or synonyms that may be valid in one language but not in another. For example, utca and tér are synonyms for street in Hungarian. | | region | string | | The region code, specified as a ccTLD ("top-level domain") two-character value. Most ccTLD codes are identical to ISO 3166-1 codes, with some notable exceptions. For example, the United Kingdom's ccTLD is "uk" (.co.uk) while its ISO 3166-1 code is "gb" (technically for the entity of "The United Kingdom of Great Britain and Northern Ireland"). |

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;html_attributions&quot;:[],&quot;result&quot;:{&quot;address_components&quot;:[{&quot;long_name&quot;:&quot;48&quot;,&quot;short_name&quot;:&quot;48&quot;,&quot;types&quot;:[&quot;street_number&quot;]},{&quot;long_name&quot;:&quot;Pirrama Road&quot;,&quot;short_name&quot;:&quot;Pirrama Rd&quot;,&quot;types&quot;:[&quot;route&quot;]},{&quot;long_name&quot;:&quot;Pyrmont&quot;,&quot;short_name&quot;:&quot;Pyrmont&quot;,&quot;types&quot;:[&quot;locality&quot;,&quot;political&quot;]},{&quot;long_name&quot;:&quot;City of Sydney&quot;,&quot;short_name&quot;:&quot;City of Sydney&quot;,&quot;types&quot;:[&quot;administrative_area_level_2&quot;,&quot;political&quot;]},{&quot;long_name&quot;:&quot;New South Wales&quot;,&quot;short_name&quot;:&quot;NSW&quot;,&quot;types&quot;:[&quot;administrative_area_level_1&quot;,&quot;political&quot;]},{&quot;long_name&quot;:&quot;Australia&quot;,&quot;short_name&quot;:&quot;AU&quot;,&quot;types&quot;:[&quot;country&quot;,&quot;political&quot;]},{&quot;long_name&quot;:&quot;2009&quot;,&quot;short_name&quot;:&quot;2009&quot;,&quot;types&quot;:[&quot;postal_code&quot;]}],&quot;adr_address&quot;:&quot;\u003cspan class=\&quot;street-address\&quot;\u003e48 Pirrama Rd\u003c/span\u003e, \u003cspan class=\&quot;locality\&quot;\u003ePyrmont\u003c/span\u003e \u003cspan class=\&quot;region\&quot;\u003eNSW\u003c/span\u003e \u003cspan class=\&quot;postal-code\&quot;\u003e2009\u003c/span\u003e, \u003cspan class=\&quot;country-name\&quot;\u003eAustralia\u003c/span\u003e&quot;,&quot;business_status&quot;:&quot;OPERATIONAL&quot;,&quot;formatted_address&quot;:&quot;48 Pirrama Rd, Pyrmont NSW 2009, Australia&quot;,&quot;formatted_phone_number&quot;:&quot;(02) 9374 4000&quot;,&quot;geometry&quot;:{&quot;location&quot;:{&quot;lat&quot;:-33.866489,&quot;lng&quot;:151.1958561},&quot;viewport&quot;:{&quot;northeast&quot;:{&quot;lat&quot;:-33.8655112697085,&quot;lng&quot;:151.1971156302915},&quot;southwest&quot;:{&quot;lat&quot;:-33.86820923029149,&quot;lng&quot;:151.1944176697085}}},&quot;icon&quot;:&quot;https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/generic_business-71.png&quot;,&quot;icon_background_color&quot;:&quot;#7B9EB0&quot;,&quot;icon_mask_base_uri&quot;:&quot;https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet&quot;,&quot;international_phone_number&quot;:&quot;+61 2 9374 4000&quot;,&quot;name&quot;:&quot;Google Workplace 6&quot;,&quot;opening_hours&quot;:{&quot;open_now&quot;:false,&quot;periods&quot;:[{&quot;close&quot;:{&quot;day&quot;:1,&quot;time&quot;:&quot;1700&quot;},&quot;open&quot;:{&quot;day&quot;:1,&quot;time&quot;:&quot;0900&quot;}},{&quot;close&quot;:{&quot;day&quot;:2,&quot;time&quot;:&quot;1700&quot;},&quot;open&quot;:{&quot;day&quot;:2,&quot;time&quot;:&quot;0900&quot;}},{&quot;close&quot;:{&quot;day&quot;:3,&quot;time&quot;:&quot;1700&quot;},&quot;open&quot;:{&quot;day&quot;:3,&quot;time&quot;:&quot;0900&quot;}},{&quot;close&quot;:{&quot;day&quot;:4,&quot;time&quot;:&quot;1700&quot;},&quot;open&quot;:{&quot;day&quot;:4,&quot;time&quot;:&quot;0900&quot;}},{&quot;close&quot;:{&quot;day&quot;:5,&quot;time&quot;:&quot;1700&quot;},&quot;open&quot;:{&quot;day&quot;:5,&quot;time&quot;:&quot;0900&quot;}}],&quot;weekday_text&quot;:[&quot;Monday: 9:00 AM – 5:00 PM&quot;,&quot;Tuesday: 9:00 AM – 5:00 PM&quot;,&quot;Wednesday: 9:00 AM – 5:00 PM&quot;,&quot;Thursday: 9:00 AM – 5:00 PM&quot;,&quot;Friday: 9:00 AM – 5:00 PM&quot;,&quot;Saturday: Closed&quot;,&quot;Sunday: Closed&quot;]},&quot;photos&quot;:[{&quot;height&quot;:3024,&quot;html_attributions&quot;:[&quot;\u003ca href=\&quot;https://maps.google.com/maps/contrib/117600448889234589608\&quot;\u003eCynthia Wei\u003c/a\u003e&quot;],&quot;photo_reference&quot;:&quot;Aap_uEC6jqtpflLS8GxQqPHBjlcwBf2sri0ZErk9q1ciHGZ6Zx5HBiiiEsPEO3emtB1PGyWbBQhgPL2r9CshoVlJEG4xzB71QMhGBTqqeaCNk1quO3vTTiP50aM1kmOaBQ-DF1ER7zpu6BQOEtnusKMul0m4KA45wfE3h6Xh2IxjLNzx-IiX&quot;,&quot;width&quot;:4032},{&quot;height&quot;:3264,&quot;html_attributions&quot;:[&quot;\u003ca href=\&quot;https://maps.google.com/maps/contrib/102493344958625549078\&quot;\u003eHeyang Li\u003c/a\u003e&quot;],&quot;photo_reference&quot;:&quot;Aap_uECyRjHhOQgGaKTW6Z3ZfTEaDhNc44m0F6GrNSFIMffixwI5xqD35QhecdzVY-FUuDtVE1huu8-2HkxgI9Gwvy6W18fU-_E3UUkdSFBQqGK8_slKlT8BZZc66sTX53IEcTDrZfT-E5_YUBYBOm13yxOTOfWfEDABhaxCGC5Hu_XYh0fI&quot;,&quot;width&quot;:4912},{&quot;height&quot;:3036,&quot;html_attributions&quot;:[&quot;\u003ca href=\&quot;https://maps.google.com/maps/contrib/104829437842034782235\&quot;\u003eAnna Linetsky\u003c/a\u003e&quot;],&quot;photo_reference&quot;:&quot;Aap_uEAumTzSdhRHDutPAj6wVPSZZmBV-brI6TPFwI0tcQlbSR74z44mUPr4aXMQKck_AzHaKmbfR3P2c1qsu45i1RQPHrcpIXxrA78FmDjCdWYYZWUnFozdcmEj9OQ_V0G08adpKivMKZyeaQ1NuwRy9GhSopeKpzkzkFZG5vXMYPPSgpa1&quot;,&quot;width&quot;:4048},{&quot;height&quot;:4016,&quot;html_attributions&quot;:[&quot;\u003ca href=\&quot;https://maps.google.com/maps/contrib/107755640736541028674\&quot;\u003eJonah Dell\u003c/a\u003e&quot;],&quot;photo_reference&quot;:&quot;Aap_uECC7cSbDkh-TdmXr6m5d5pgVXJmvXg8dF2jzhL0b0Ko4CtnVll6-tIvdz7vhbCsd3hl2u9EgZ4Y30FBxKmFcimfeYUgW2XJyv8JY5IYGuXsKkCLqpV3QH9dIGwoUv2uX0eosDsUsTN2DOlyOasUgVxcYqzIzEmrL5ofIssThQWZeozD&quot;,&quot;width&quot;:6016},{&quot;height&quot;:3024,&quot;html_attributions&quot;:[&quot;\u003ca href=\&quot;https://maps.google.com/maps/contrib/115886271727815775491\&quot;\u003eAnthony Huynh\u003c/a\u003e&quot;],&quot;photo_reference&quot;:&quot;Aap_uEDTdw58CglFmZZAR9iZ05x3y2oK9r5_dRqKWnbZKSS9gs6gp9AeBa1QDvBL6dzZyQAZfN8H2Eppu6y4NBaPOp-GkulZYiKRM7Yww8sUEv-8dmcq35Tx38pe4LEX2wIicFkQHedRgMc0FfV9aFtgosQ5ps5-HCjJSApg8eLGyuxxqPm9&quot;,&quot;width&quot;:4032},{&quot;height&quot;:3024,&quot;html_attributions&quot;:[&quot;\u003ca href=\&quot;https://maps.google.com/maps/contrib/102939237947063969663\&quot;\u003eJasen Baker\u003c/a\u003e&quot;],&quot;photo_reference&quot;:&quot;Aap_uEAGqslqZPhZUk0T2Y6l7mkCYnY7JN9li4g5NkZsE0N4Cdy7_cZ-fZWyV02VhpQR4Ph4fLUL6_WTXrlGMXXzUJXUcSmSTs2d_Dzf3Q_A1y07Dm-vtv7pS3JXsWyrWETGIoT1pIj81PPdUc1vlR2i3GFMWAbx9rCC472ZJclY8JlvMg-x&quot;,&quot;width&quot;:4032},{&quot;height&quot;:3024,&quot;html_attributions&quot;:[&quot;\u003ca href=\&quot;https://maps.google.com/maps/contrib/100678816592586275978\&quot;\u003eJeremy Hsiao\u003c/a\u003e&quot;],&quot;photo_reference&quot;:&quot;Aap_uEBaGxeN90YFjD-AUjxZqM44kpMcICKKBBhb0RQQS7DHHFaay8RRAwjWsAt8GEmmB5QnxrbQWHU3TwhVXXHP0m-YNp9Ds3ihpiFan0moNv4QB7kern5cfjWhhrWe8B0dz_vYvmPssJE24P-24YfWWHubOo0L2MjQyueZfDv57N_RvDZk&quot;,&quot;width&quot;:4032},{&quot;height&quot;:1515,&quot;html_attributions&quot;:[&quot;\u003ca href=\&quot;https://maps.google.com/maps/contrib/112343109286948028063\&quot;\u003eAndrew W\u003c/a\u003e&quot;],&quot;photo_reference&quot;:&quot;Aap_uEBDzJlmTeNUreMop6_hkC1HKTCRLyPs5fikJi58qCejtkWp5PIM6vzNN3HErkSWUwnamTr_WLyT7jXMAIdByR-hx8dG-OHjj5JxzmcPvuT_VeVLmdSbNPeIlpmp6EUcPOhaVrhEKojSd44QXkl0za29eZ0oj1KDOnAsGxmhanDFW7lI&quot;,&quot;width&quot;:2048},{&quot;height&quot;:3024,&quot;html_attributions&quot;:[&quot;\u003ca href=\&quot;https://maps.google.com/maps/contrib/100678816592586275978\&quot;\u003eJeremy Hsiao\u003c/a\u003e&quot;],&quot;photo_reference&quot;:&quot;Aap_uEBvYFpzCDQzvQ0kdBxxB70lTkLbTM0yH3xF-BCHsb7DQ63cuWnutvwv8oVLDSbA14_kns3WVlEInTyy2elvmH5lzQteb6zzRu3exkwE65_55TgJqdLO7RYYiPFliWk4ocszn9nn5ELv5uP2BQmqr9QET5vwgxR-0eshyVmcdM42jb39&quot;,&quot;width&quot;:4032},{&quot;height&quot;:4032,&quot;html_attributions&quot;:[&quot;\u003ca href=\&quot;https://maps.google.com/maps/contrib/100678816592586275978\&quot;\u003eJeremy Hsiao\u003c/a\u003e&quot;],&quot;photo_reference&quot;:&quot;Aap_uECQynuD_EnSnbz8sJQ6-B6uR-j2tuu4Z1tuGUjq8xnxFDk-W8OdeLzWBX8suNKTCsPlkzTqC22BXf_hX33XclGPL4SS9xnPmHcMrLoUl0H_xHYevFvT17Hgw5DZpSyVmLvDvxzzJ1rsZTh55QwopmAty083a1r1ZIfL32iXh_q8FUas&quot;,&quot;width&quot;:3024}],&quot;place_id&quot;:&quot;ChIJN1t_tDeuEmsRUsoyG83frY4&quot;,&quot;plus_code&quot;:{&quot;compound_code&quot;:&quot;45MW+C8 Pyrmont NSW, Australia&quot;,&quot;global_code&quot;:&quot;4RRH45MW+C8&quot;},&quot;rating&quot;:4,&quot;reference&quot;:&quot;ChIJN1t_tDeuEmsRUsoyG83frY4&quot;,&quot;reviews&quot;:[{&quot;author_name&quot;:&quot;Luke Archibald&quot;,&quot;author_url&quot;:&quot;https://www.google.com/maps/contrib/113389359827989670652/reviews&quot;,&quot;language&quot;:&quot;en&quot;,&quot;profile_photo_url&quot;:&quot;https://lh3.googleusercontent.com/a-/AOh14GhGGmTmvtD34HiRgwHdXVJUTzVbxpsk5_JnNKM5MA=s128-c0x00000000-cc-rp-mo&quot;,&quot;rating&quot;:1,&quot;relative_time_description&quot;:&quot;a week ago&quot;,&quot;text&quot;:&quot;Called regarding paid advertising google pages to the top of its site of a scam furniture website misleading and taking peoples money without ever sending a product - explained the situation,  explained I&#39;d spoken to an ombudsman regarding it.  Listed ticket numbers etc.\n\nThey left the advertisement running.&quot;,&quot;time&quot;:1652286798},{&quot;author_name&quot;:&quot;Tevita Taufoou&quot;,&quot;author_url&quot;:&quot;https://www.google.com/maps/contrib/105937236918123663309/reviews&quot;,&quot;language&quot;:&quot;en&quot;,&quot;profile_photo_url&quot;:&quot;https://lh3.googleusercontent.com/a/AATXAJwZANdRSSg96QeZG--6BazG5uv_BJMIvpZGqwSz=s128-c0x00000000-cc-rp-mo&quot;,&quot;rating&quot;:1,&quot;relative_time_description&quot;:&quot;6 months ago&quot;,&quot;text&quot;:&quot;I need help.  Google Australia is taking my money. Money I don&#39;t have any I am having trouble sorting this issue out&quot;,&quot;time&quot;:1637215605},{&quot;author_name&quot;:&quot;Jordy Baker&quot;,&quot;author_url&quot;:&quot;https://www.google.com/maps/contrib/102582237417399865640/reviews&quot;,&quot;language&quot;:&quot;en&quot;,&quot;profile_photo_url&quot;:&quot;https://lh3.googleusercontent.com/a/AATXAJwgg1tM4aVA4nJCMjlfJtHtFZuxF475Vb6tT74S=s128-c0x00000000-cc-rp-mo&quot;,&quot;rating&quot;:1,&quot;relative_time_description&quot;:&quot;4 months ago&quot;,&quot;text&quot;:&quot;I have literally never been here in my life, I am 17 and they are taking money I don&#39;t have for no reason.\n\nThis is not ok. I have rent to pay and my own expenses to deal with and now this.&quot;,&quot;time&quot;:1641389490},{&quot;author_name&quot;:&quot;Prem Rathod&quot;,&quot;author_url&quot;:&quot;https://www.google.com/maps/contrib/115981614018592114142/reviews&quot;,&quot;language&quot;:&quot;en&quot;,&quot;profile_photo_url&quot;:&quot;https://lh3.googleusercontent.com/a/AATXAJyEQpqs4YvPPzMPG2dnnRTFPC4jxJfn8YXnm2gz=s128-c0x00000000-cc-rp-mo&quot;,&quot;rating&quot;:1,&quot;relative_time_description&quot;:&quot;4 months ago&quot;,&quot;text&quot;:&quot;Terrible service. all reviews are fake and irrelevant. This is about reviewing google as business not the building/staff etc.&quot;,&quot;time&quot;:1640159655},{&quot;author_name&quot;:&quot;Husuni Hamza&quot;,&quot;author_url&quot;:&quot;https://www.google.com/maps/contrib/102167316656574288776/reviews&quot;,&quot;language&quot;:&quot;en&quot;,&quot;profile_photo_url&quot;:&quot;https://lh3.googleusercontent.com/a/AATXAJwRkyvoSlgd06ahkF9XI9D39o6Zc_Oycm5EKuRg=s128-c0x00000000-cc-rp-mo&quot;,&quot;rating&quot;:5,&quot;relative_time_description&quot;:&quot;7 months ago&quot;,&quot;text&quot;:&quot;Nice site. Please I want to work with you. Am Alhassan Haruna, from Ghana. Contact me +233553851616&quot;,&quot;time&quot;:1633197305}],&quot;types&quot;:[&quot;point_of_interest&quot;,&quot;establishment&quot;],&quot;url&quot;:&quot;https://maps.google.com/?cid=10281119596374313554&quot;,&quot;user_ratings_total&quot;:939,&quot;utc_offset&quot;:600,&quot;vicinity&quot;:&quot;48 Pirrama Road, Pyrmont&quot;,&quot;website&quot;:&quot;http://google.com/&quot;},&quot;status&quot;:&quot;OK&quot;}