GeoScraper API Documentation - Google Map Search API

Google Map Search API

This API enables scraping multiple places at once using specific location coordinates and a query.

Endpoint

  • POST: https://api.geoscraper.net/google/map/results

Headers

  • X-Berserker-Token: Your_Access_Token

Request Body

  • Format: JSON
  • Fields:
    • ll (required): Coordinates and zoom level in the format “@latitude,longitude,zoomz”.
    • query (required): The search query, e.g., “hotels in usa”.
    • start (optional): Pagination index of the results.
    • hl (optional): Language parameter for response language.
    • catched (optional): Use cached data if available.

Sample Request

import requests

url = "https://api.geoscraper.net/google/map/results"
payload = {
    "ll": "paris",
    "query": "hotels",
    "start": 8,
    "hl": "en",
    "catched": true
}
headers = {'X-Berserker-Token': 'Your_Access_Token'}

response = requests.post(url, headers=headers, json=payload)
print(response.text)

Sample Response

[
    {
        "title": "Green Park Hotel Paris",
        "place_id": "ChIJp1H8jjVt5kcRmy5xzLGbInk",
        "data_id": "0x47e66d358efc51a7:0x79229bb1cc712e9b",
        "data_cid": 8728710215738928795,
        "gps_coordinates": {
            "latitude": 48.878333,
            "longitude": 2.3842529
        },
        "provider_id": "/g/11vymch8c5",
        "rating": 4.7,
        "reviews": 85,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "4 Rue Hassard, 75019 Paris",
        "operating_hours": {},
        "phone": "+33 1 89 40 52 01",
        "website": "http://www.greenparkhotelparis.com/",
        "description": {},
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=YzsF5YM5ithA0iPpo5MERA&cb_client=search.gws-prod.gps&w=211&h=120&yaw=63.88542&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "4 Rue Hassard",
        "city": "Paris",
        "zip_code": 75019,
        "country": "FR",
        "reviews_per_1": 2,
        "reviews_per_2": 0,
        "reviews_per_3": 4,
        "reviews_per_4": 12,
        "reviews_per_5": 67,
        "photo_count": 149,
        "logo": "https://lh6.googleusercontent.com/-nlAHoVZnmW0/AAAAAAAAAAI/AAAAAAAAAAA/biwn5hiGMrU/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "115166609941780675253",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/Green+Park+Hotel+Paris,+4+Rue+Hassard,+75019+Paris,+France/@48.878333,2.3842529,2624a,13.1y/data=!4m2!3m1!1s0x47e66d358efc51a7:0x79229bb1cc712e9b",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": null,
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "",
        "price": null
    },
    {
        "title": "La Clef Louvre Paris by The Crest Collection",
        "place_id": "ChIJzaSeByVu5kcRtL4twIpmyvs",
        "data_id": "0x47e66e25079ea4cd:0xfbca668ac02dbeb4",
        "data_cid": -303317278778343756,
        "gps_coordinates": {
            "latitude": 48.8640051,
            "longitude": 2.3362772
        },
        "provider_id": "/g/1pxy9kn33",
        "rating": 4.2,
        "reviews": 248,
        "type": "Hotel",
        "types": [
            "Hotel",
            "City Hall",
            "Extended stay hotel",
            "Holiday apartment rental",
            "Serviced accommodation"
        ],
        "address": "8 Rue de Richelieu, 75001 Paris",
        "operating_hours": {},
        "phone": "+33 1 55 35 28 00",
        "website": "https://www.discoverasr.com/the-crest-collection/france/la-clef-louvre-paris-by-the-crest-collection?utm_source=google&utm_medium=maps&utm_campaign=hq-google-maps-alwayson-20240531-all-all-eu-fr-lacleflouvreparis-yext-gbp",
        "description": {
            "description_one": "With an Art Nouveau facade, this upscale, all-suite hotel in the 1st arr. is a 2-minute walk from the Palais Royal-Musée du Louvre metro station. It's 280 m from the Louvre art gallery and 4.4 km from the Eiffel Tower.",
            "description_two": "Stylish suites have living areas, full kitchens and washer/dryers, plus WiFi access, flat-screen TVs and DVD players. Upgraded units add terraces or balconies.",
            "description_three": "A breakfast buffet is served in an elegant dining room (fee). Additional amenities include a fitness room and guest lounge."
        },
        "thumbnail": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nopBmmZ9hPG7Sp6kl9todnJV_un5560PcQEIiR1R9T94C8osLpr-WsfZVW9Ah403cQAGt2vYblSr7_Ee4mrvSjv3ZBEZNlqh8sU7W5-1TkRAWsvBAJESkOxWOXR7tteHSFRZAYW=w1600-h1000-k-no",
        "street": "8 Rue de Richelieu",
        "city": "Paris",
        "zip_code": 75001,
        "country": "FR",
        "reviews_per_1": 31,
        "reviews_per_2": 8,
        "reviews_per_3": 8,
        "reviews_per_4": 34,
        "reviews_per_5": 167,
        "photo_count": 852,
        "logo": "https://lh3.googleusercontent.com/-W_-qxPFGMYM/AAAAAAAAAAI/AAAAAAAAAAA/vJqeomq7m-c/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "114093107006609670883",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/La+Clef+Louvre+Paris+by+The+Crest+Collection,+8+Rue+de+Richelieu,+75001+Paris,+France/@48.8640051,2.3362772,2625a,13.1y/data=!4m2!3m1!1s0x47e66e25079ea4cd:0xfbca668ac02dbeb4",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "With an Art Nouveau facade, this upscale, all-suite hotel in the 1st arr. is a 2-minute walk from the Palais Royal-Musée du Louvre metro station. It's 280 m from the Louvre art gallery and 4.4 km from the Eiffel Tower.",
            "Stylish suites have living areas, full kitchens and washer/dryers, plus WiFi access, flat-screen TVs and DVD players. Upgraded units add terraces or balconies.",
            "A breakfast buffet is served in an elegant dining room (fee). Additional amenities include a fitness room and guest lounge."
        ],
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [
            "https://www.tiktok.com/@discoverasr",
            "https://twitter.com/DiscoverASR",
            "https://www.youtube.com/DiscoverASR"
        ],
        "facebook": null,
        "twitter": "https://twitter.com/DiscoverASR",
        "instagram": null,
        "linkedin": null,
        "youtube": "https://www.youtube.com/DiscoverASR",
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": "https://www.tiktok.com/@discoverasr",
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "With an Art Nouveau facade, this upscale, all-suite hotel in the 1st arr. is a 2-minute walk from the Palais Royal-Musée du Louvre metro station. It's 280 m from the Louvre art gallery and 4.4 km from the Eiffel Tower.Stylish suites have living areas, full kitchens and washer/dryers, plus WiFi access, flat-screen TVs and DVD players. Upgraded units add terraces or balconies.A breakfast buffet is served in an elegant dining room (fee). Additional amenities include a fitness room and guest lounge.",
        "price": null
    },
    {
        "title": "Hôtel Villa Romantic & Spa",
        "place_id": "ChIJ63ScR8hx5kcREUwJJsSUxDA",
        "data_id": "0x47e671c8479c74eb:0x30c494c426094c11",
        "data_cid": 3514097179428473873,
        "gps_coordinates": {
            "latitude": 48.834573999999996,
            "longitude": 2.3543205
        },
        "provider_id": "/g/11sz2v5k73",
        "rating": 4.2,
        "reviews": 370,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "35 Rue du Banquier, 75013 Paris",
        "operating_hours": {},
        "phone": "+33 1 43 31 73 30",
        "website": "http://www.hotelvillaromanticparis.com/",
        "description": {},
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=O8GVO63L6HEyUq4S8Bpgcg&cb_client=search.gws-prod.gps&w=211&h=120&yaw=157.86766&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "35 Rue du Banquier",
        "city": "Paris",
        "zip_code": 75013,
        "country": "FR",
        "reviews_per_1": 43,
        "reviews_per_2": 15,
        "reviews_per_3": 22,
        "reviews_per_4": 49,
        "reviews_per_5": 241,
        "photo_count": 441,
        "logo": "https://lh6.googleusercontent.com/-b_usY5DP2vM/AAAAAAAAAAI/AAAAAAAAAAA/WvvLh45lb3A/s44-p-k-no-ns-nd/photo.jpg",
        "owner": "109512454363854844541",
        "category": "hotels",
        "reviews_link": "https://search.google.com/local/reviews?placeid=ChIJ63ScR8hx5kcREUwJJsSUxDA&authuser=0&hl=en&gl=CA",
        "place_url": "https://www.google.com/maps/preview/place/H%C3%B4tel+Villa+Romantic+%26+Spa,+35+Rue+du+Banquier,+75013+Paris,+France/@48.834574,2.3543205,2626a,13.1y/data=!4m2!3m1!1s0x47e671c8479c74eb:0x30c494c426094c11",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": null,
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [
            "https://instagram.com/villaromanticparis"
        ],
        "facebook": null,
        "twitter": null,
        "instagram": "https://instagram.com/villaromanticparis",
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "",
        "price": null
    },
    {
        "title": "Le Citizen Hotel",
        "place_id": "ChIJwwOQ3Ldv5kcR1JufGtdhxlc",
        "data_id": "0x47e66fb7dc9003c3:0x57c661d71a9f9bd4",
        "data_cid": 6324850303180970964,
        "gps_coordinates": {
            "latitude": 48.8732097,
            "longitude": 2.3643245999999998
        },
        "provider_id": "/g/11kd6c1gvg",
        "rating": 4.5,
        "reviews": 181,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "96 Quai de Jemmapes, 75010 Paris",
        "operating_hours": {},
        "phone": "+33 1 83 62 55 50",
        "website": "http://lecitizenhotel.com/",
        "description": {},
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=dfzprYY7aaLOLo6r0MS7pg&cb_client=search.gws-prod.gps&w=211&h=120&yaw=103.22143&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "96 Quai de Jemmapes",
        "city": "Paris",
        "zip_code": 75010,
        "country": "FR",
        "reviews_per_1": 6,
        "reviews_per_2": 4,
        "reviews_per_3": 10,
        "reviews_per_4": 31,
        "reviews_per_5": 130,
        "photo_count": 123,
        "logo": "https://lh5.googleusercontent.com/-3FVfytmWsxg/AAAAAAAAAAI/AAAAAAAAAAA/q6QrlLhvrbg/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "100130738144195893206",
        "category": "hotels",
        "reviews_link": null,
        "service_option": [
            {
                "name": "Crowd",
                "slug": "crowd",
                "options": [
                    {
                        "name": "LGBTQ+ friendly",
                        "slug": "/geo/type/establishment_poi/welcomes_lgbtq"
                    }
                ]
            }
        ],
        "place_url": "https://www.google.com/maps/preview/place/Le+Citizen+Hotel,+96+Quai+de+Jemmapes,+75010+Paris,+France/@48.8732097,2.3643246,2624a,13.1y/data=!4m2!3m1!1s0x47e66fb7dc9003c3:0x57c661d71a9f9bd4",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": null,
        "state": null,
        "not_claimed": false,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [
            "https://www.instagram.com/lecitizenparis"
        ],
        "facebook": null,
        "twitter": null,
        "instagram": "https://www.instagram.com/lecitizenparis",
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "",
        "price": null
    },
    {
        "title": "Hotel Moris",
        "place_id": "ChIJ9z6uOg5u5kcRbWOvcTWZhNQ",
        "data_id": "0x47e66e0e3aae3ef7:0xd484993571af636d",
        "data_cid": -3133210985923386515,
        "gps_coordinates": {
            "latitude": 48.869087199999996,
            "longitude": 2.3574397
        },
        "provider_id": "/g/1tffnndm",
        "rating": 4.5,
        "reviews": 448,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "13 Rue René Boulanger, 75010 Paris",
        "operating_hours": {},
        "phone": "+33 1 42 06 27 53",
        "website": "http://www.hotelmoris.com/",
        "description": {
            "description_one": "A 4-minute walk from Strasbourg - Saint-Denis metro station, this classic hotel on a cobbled street is also 7 minutes' walk from the bars and cafes of the Place de la République.",
            "description_two": "Airy rooms with wood floors offer en suite bathrooms, minibars, flat-screen TVs and free WiFi.",
            "description_three": "Amenities include a lounge/bar, a meeting room and paid parking. A breakfast buffet is available for a surcharge."
        },
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=X5J1hEKci2kqGFyS6pf5yQ&cb_client=search.gws-prod.gps&w=211&h=120&yaw=188.5615&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "13 Rue René Boulanger",
        "city": "Paris",
        "zip_code": 75010,
        "country": "FR",
        "reviews_per_1": 9,
        "reviews_per_2": 8,
        "reviews_per_3": 26,
        "reviews_per_4": 132,
        "reviews_per_5": 273,
        "photo_count": 572,
        "logo": "https://lh4.googleusercontent.com/-u39Kvr1oDHo/AAAAAAAAAAI/AAAAAAAAAAA/PjKyU7hgwuc/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "115495781289162726688",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/Hotel+Moris,+13+Rue+Ren%C3%A9+Boulanger,+75010+Paris,+France/@48.8690872,2.3574397,2624a,13.1y/data=!4m2!3m1!1s0x47e66e0e3aae3ef7:0xd484993571af636d",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "A 4-minute walk from Strasbourg - Saint-Denis metro station, this classic hotel on a cobbled street is also 7 minutes' walk from the bars and cafes of the Place de la République.",
            "Airy rooms with wood floors offer en suite bathrooms, minibars, flat-screen TVs and free WiFi.",
            "Amenities include a lounge/bar, a meeting room and paid parking. A breakfast buffet is available for a surcharge."
        ],
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "A 4-minute walk from Strasbourg - Saint-Denis metro station, this classic hotel on a cobbled street is also 7 minutes' walk from the bars and cafes of the Place de la République.Airy rooms with wood floors offer en suite bathrooms, minibars, flat-screen TVs and free WiFi.Amenities include a lounge/bar, a meeting room and paid parking. A breakfast buffet is available for a surcharge.",
        "price": null
    },
    {
        "title": "Hôtel Les Théâtres Paris",
        "place_id": "ChIJFa8PuBZu5kcR9bDiXtIvztw",
        "data_id": "0x47e66e16b80faf15:0xdcce2fd25ee2b0f5",
        "data_cid": -2536036959581458187,
        "gps_coordinates": {
            "latitude": 48.8695573,
            "longitude": 2.3516086
        },
        "provider_id": "/g/1hhvz0xbt",
        "rating": 4,
        "reviews": 484,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "98 Rue de Cléry, 75002 Paris",
        "operating_hours": {},
        "phone": "+33 1 44 82 50 82",
        "website": "http://www.hotellestheatres.com/",
        "description": {
            "description_one": "A 7-minute walk from the food markets of Rue Montorgueil, this quirky, theatre-themed hotel is 16 minutes' walk from Centre Pompidou and 2 km from the Picasso National Museum.",
            "description_two": "Sophisticated rooms are inspired by French theatrical and artistic figures. Those inspired by Jean Cocteau have bright colors and modern decor, while those based on Molière have 17th-century-style murals. All come with minibars, free WiFi and flat-screen TVs, and some feature balconies.",
            "description_three": "Continental buffet breakfast (surcharge) is served in the stylish dining room, which features an exposed stone wall and library-style decor. There's also a steam room."
        },
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=jfsXdwe3OC_opQbp3AFLhA&cb_client=search.gws-prod.gps&w=211&h=120&yaw=175.0511&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "98 Rue de Cléry",
        "city": "Paris",
        "zip_code": 75002,
        "country": "FR",
        "reviews_per_1": 29,
        "reviews_per_2": 21,
        "photo_count": 603,
        "logo": "https://lh3.googleusercontent.com/-TbZlf6a61qQ/AAAAAAAAAAI/AAAAAAAAAAA/kn12GfMKwYc/s44-p-k-no-ns-nd/photo.jpg",
        "owner": "116449982882140440369",
        "category": "hotels",
        "reviews_link": "https://search.google.com/local/reviews?placeid=ChIJFa8PuBZu5kcR9bDiXtIvztw&authuser=0&hl=en&gl=CA",
        "place_url": "https://www.google.com/maps/preview/place/H%C3%B4tel+Les+Th%C3%A9%C3%A2tres+Paris,+98+Rue+de+Cl%C3%A9ry,+75002+Paris,+France/@48.8695573,2.3516086,2624a,13.1y/data=!4m2!3m1!1s0x47e66e16b80faf15:0xdcce2fd25ee2b0f5",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "A 7-minute walk from the food markets of Rue Montorgueil, this quirky, theatre-themed hotel is 16 minutes' walk from Centre Pompidou and 2 km from the Picasso National Museum.",
            "Sophisticated rooms are inspired by French theatrical and artistic figures. Those inspired by Jean Cocteau have bright colors and modern decor, while those based on Molière have 17th-century-style murals. All come with minibars, free WiFi and flat-screen TVs, and some feature balconies.",
            "Continental buffet breakfast (surcharge) is served in the stylish dining room, which features an exposed stone wall and library-style decor. There's also a steam room."
        ],
        "reviews_per_3": 59,
        "reviews_per_4": 171,
        "reviews_per_5": 204,
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "A 7-minute walk from the food markets of Rue Montorgueil, this quirky, theatre-themed hotel is 16 minutes' walk from Centre Pompidou and 2 km from the Picasso National Museum.Sophisticated rooms are inspired by French theatrical and artistic figures. Those inspired by Jean Cocteau have bright colors and modern decor, while those based on Molière have 17th-century-style murals. All come with minibars, free WiFi and flat-screen TVs, and some feature balconies.Continental buffet breakfast (surcharge) is served in the stylish dining room, which features an exposed stone wall and library-style decor. There's also a steam room.",
        "price": null
    },
    {
        "title": "Hotel des Deux Continents",
        "place_id": "ChIJFdUZFdhx5kcREz36A-Twvj4",
        "data_id": "0x47e671d81519d515:0x3ebef0e403fa3d13",
        "data_cid": 4521315938036497683,
        "gps_coordinates": {
            "latitude": 48.8552841,
            "longitude": 2.3344568999999997
        },
        "provider_id": "/g/1vs1r5db",
        "rating": 4.2,
        "reviews": 415,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "25 Rue Jacob, 75006 Paris",
        "operating_hours": {},
        "phone": "+33 1 43 26 72 46",
        "website": "https://www.hoteldes2continents.com/",
        "description": {
            "description_one": "A 4-minute walk from Saint-Germain-des-Prés metro station, this refined hotel in an ornate building is 12 minutes' walk from the Musée du Louvre and 1 km from Cathédrale Notre-Dame de Paris.",
            "description_two": "Air-conditioned rooms with genteel decor feature street or courtyard views, flat-screen TVs with satellite channels, and free WiFi; some rooms add wood accents, and tea and coffeemaking equipment, as well as balconies and/or marble-clad bathrooms.",
            "description_three": "Breakfast (surcharge) is served in the elegant dining room with oak-beamed ceilings and colorful wall frescoes. There's also a terrace and a plush lounge with antique furnishings."
        },
        "thumbnail": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4npdwshiByx9dduuplLkeVoBROFLTH4CPq5IM_xM-V0XPVAM6L-ObZYS_63E4QtEg_jmQX_0JLxbWh02tQVBjmvEwObuhLmpnH21LVwUzXsrGVIqPYrtGoe3jjed8dkhYKcE8pRwbg=w1600-h1000-k-no",
        "street": "25 Rue Jacob",
        "city": "Paris",
        "zip_code": 75006,
        "country": "FR",
        "reviews_per_1": 15,
        "reviews_per_2": 14,
        "reviews_per_3": 37,
        "reviews_per_4": 141,
        "reviews_per_5": 208,
        "photo_count": 378,
        "logo": "https://lh3.googleusercontent.com/-OsWq3RV3eso/AAAAAAAAAAI/AAAAAAAAAAA/6wvrJgWXHsw/s44-p-k-no-ns-nd/photo.jpg",
        "owner": "105005140709186887715",
        "category": "hotels",
        "reviews_link": "https://search.google.com/local/reviews?placeid=ChIJFdUZFdhx5kcREz36A-Twvj4&authuser=0&hl=en&gl=CA",
        "place_url": "https://www.google.com/maps/preview/place/Hotel+des+Deux+Continents,+25+Rue+Jacob,+75006+Paris,+France/@48.8552841,2.3344569,2625a,13.1y/data=!4m2!3m1!1s0x47e671d81519d515:0x3ebef0e403fa3d13",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "A 4-minute walk from Saint-Germain-des-Prés metro station, this refined hotel in an ornate building is 12 minutes' walk from the Musée du Louvre and 1 km from Cathédrale Notre-Dame de Paris.",
            "Air-conditioned rooms with genteel decor feature street or courtyard views, flat-screen TVs with satellite channels, and free WiFi; some rooms add wood accents, and tea and coffeemaking equipment, as well as balconies and/or marble-clad bathrooms.",
            "Breakfast (surcharge) is served in the elegant dining room with oak-beamed ceilings and colorful wall frescoes. There's also a terrace and a plush lounge with antique furnishings."
        ],
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [
            "https://www.facebook.com/HotelDesDeuxContinents",
            "https://www.instagram.com/hoteldes2continents"
        ],
        "facebook": "https://www.facebook.com/HotelDesDeuxContinents",
        "twitter": null,
        "instagram": "https://www.instagram.com/hoteldes2continents",
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "A 4-minute walk from Saint-Germain-des-Prés metro station, this refined hotel in an ornate building is 12 minutes' walk from the Musée du Louvre and 1 km from Cathédrale Notre-Dame de Paris.Air-conditioned rooms with genteel decor feature street or courtyard views, flat-screen TVs with satellite channels, and free WiFi; some rooms add wood accents, and tea and coffeemaking equipment, as well as balconies and/or marble-clad bathrooms.Breakfast (surcharge) is served in the elegant dining room with oak-beamed ceilings and colorful wall frescoes. There's also a terrace and a plush lounge with antique furnishings.",
        "price": null
    },
    {
        "title": "La Maison Favart",
        "place_id": "ChIJfaKPzTtu5kcRRv_Vy1nU98E",
        "data_id": "0x47e66e3bcd8fa27d:0xc1f7d459cbd5ff46",
        "data_cid": -4469870623004950714,
        "gps_coordinates": {
            "latitude": 48.870810399999996,
            "longitude": 2.3373092
        },
        "provider_id": "/g/1hc27ychv",
        "rating": 4.7,
        "reviews": 536,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "5 Rue de Marivaux, 75002 Paris",
        "operating_hours": {},
        "phone": "+33 1 42 97 59 83",
        "website": "http://www.lamaisonfavart.com/",
        "description": {
            "description_one": "Set in the 2nd arr., this sophisticated hotel is a 3-minute walk from the Richelieu - Drouot metro station and a 10-minute walk from both the Musée de la Franc-Maçonnerie and the Folies Bergère cabaret hall.",
            "description_two": "Elegant rooms and suites, many with 18th century-style decor, offer free WiFi, flat-screen TVs and minibars. There's also a separate house, once the home of an 18th-century musical director, with 2 suites featuring Nespresso machines, living rooms & electric fireplaces; 1 adds a whirlpool tub.",
            "description_three": "There’s a chic spa area with a sauna, a gym, massage treatments, and a hot tub with a waterfall. Buffet breakfast is available (fee)."
        },
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=-Gte0rIZi44cDMcRiYXebA&cb_client=search.gws-prod.gps&w=211&h=120&yaw=287.28644&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "5 Rue de Marivaux",
        "city": "Paris",
        "zip_code": 75002,
        "country": "FR",
        "reviews_per_1": 14,
        "reviews_per_2": 6,
        "reviews_per_3": 8,
        "reviews_per_4": 69,
        "reviews_per_5": 439,
        "photo_count": 629,
        "logo": "https://lh3.googleusercontent.com/-6dROYhdX_4M/AAAAAAAAAAI/AAAAAAAAAAA/N3WyBn3OFBk/s44-p-k-no-ns-nd/photo.jpg",
        "owner": "102987103557419827525",
        "category": "hotels",
        "reviews_link": "https://search.google.com/local/reviews?placeid=ChIJfaKPzTtu5kcRRv_Vy1nU98E&authuser=0&hl=en&gl=CA",
        "place_url": "https://www.google.com/maps/preview/place/La+Maison+Favart,+5+Rue+de+Marivaux,+75002+Paris,+France/@48.8708104,2.3373092,2624a,13.1y/data=!4m2!3m1!1s0x47e66e3bcd8fa27d:0xc1f7d459cbd5ff46",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "Set in the 2nd arr., this sophisticated hotel is a 3-minute walk from the Richelieu - Drouot metro station and a 10-minute walk from both the Musée de la Franc-Maçonnerie and the Folies Bergère cabaret hall.",
            "Elegant rooms and suites, many with 18th century-style decor, offer free WiFi, flat-screen TVs and minibars. There's also a separate house, once the home of an 18th-century musical director, with 2 suites featuring Nespresso machines, living rooms & electric fireplaces; 1 adds a whirlpool tub.",
            "There’s a chic spa area with a sauna, a gym, massage treatments, and a hot tub with a waterfall. Buffet breakfast is available (fee)."
        ],
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [
            "https://www.facebook.com/LaMaisonFavart"
        ],
        "facebook": "https://www.facebook.com/LaMaisonFavart",
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "Set in the 2nd arr., this sophisticated hotel is a 3-minute walk from the Richelieu - Drouot metro station and a 10-minute walk from both the Musée de la Franc-Maçonnerie and the Folies Bergère cabaret hall.Elegant rooms and suites, many with 18th century-style decor, offer free WiFi, flat-screen TVs and minibars. There's also a separate house, once the home of an 18th-century musical director, with 2 suites featuring Nespresso machines, living rooms & electric fireplaces; 1 adds a whirlpool tub.There’s a chic spa area with a sauna, a gym, massage treatments, and a hot tub with a waterfall. Buffet breakfast is available (fee).",
        "price": null
    },
    {
        "title": "Crystal Hotel Paris",
        "place_id": "ChIJzfaLhtdx5kcR28OXd71n4oc",
        "data_id": "0x47e671d7868bf6cd:0x87e267bd7797c3db",
        "data_cid": -8655241470399757349,
        "gps_coordinates": {
            "latitude": 48.8543867,
            "longitude": 2.3327353
        },
        "provider_id": "/g/1tdydyvd",
        "rating": 4,
        "reviews": 120,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "24 Rue Saint-Benoît, 75006 Paris",
        "operating_hours": {},
        "phone": "+33 1 45 48 85 14",
        "website": "http://www.hotelcrystalsaintgermainparis.com/",
        "description": {
            "description_one": "Located 1 block from the cafes on Boulevard Saint-Germain, this genteel hotel is a 2-minute walk from Saint-Germain-des-Prés metro station and a 9-minute walk from Le Jardin du Luxembourg.",
            "description_two": "The warm rooms offer free Wi-Fi and flat-screen TVs. Upgraded quarters offer beamed ceilings and antique-style furnishings. Suites add separate living areas with pull-out sofas.",
            "description_three": "A continental breakfast buffet (surcharge) is served in a stone-walled dining room. There's also a stylish lounge with seating adjacent to the lobby."
        },
        "thumbnail": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqAi4z9M4QSnrUGMyXIDSodptIJaTMMqPEgwQFvRO9dEYDWuhG8MHxEReifcQ2b0gwqYw5uRbL3QsZ3El6MJZ62n0inUF0B2Q537eplzH8P8Hjr3ZxLE6T3PnlACv7O17DhtyjB=w1600-h1000-k-no",
        "street": "24 Rue Saint-Benoît",
        "city": "Paris",
        "zip_code": 75006,
        "country": "FR",
        "reviews_per_1": 13,
        "reviews_per_2": 2,
        "reviews_per_3": 10,
        "reviews_per_4": 42,
        "reviews_per_5": 53,
        "photo_count": 385,
        "logo": "https://lh5.googleusercontent.com/-F0IljxHSiyE/AAAAAAAAAAI/AAAAAAAAAAA/AsFIpO209Yw/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "104145883334501143457",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/Crystal+Hotel+Paris,+24+Rue+Saint-Beno%C3%AEt,+75006+Paris,+France/@48.8543867,2.3327353,2625a,13.1y/data=!4m2!3m1!1s0x47e671d7868bf6cd:0x87e267bd7797c3db",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "Located 1 block from the cafes on Boulevard Saint-Germain, this genteel hotel is a 2-minute walk from Saint-Germain-des-Prés metro station and a 9-minute walk from Le Jardin du Luxembourg.",
            "The warm rooms offer free Wi-Fi and flat-screen TVs. Upgraded quarters offer beamed ceilings and antique-style furnishings. Suites add separate living areas with pull-out sofas.",
            "A continental breakfast buffet (surcharge) is served in a stone-walled dining room. There's also a stylish lounge with seating adjacent to the lobby."
        ],
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "Located 1 block from the cafes on Boulevard Saint-Germain, this genteel hotel is a 2-minute walk from Saint-Germain-des-Prés metro station and a 9-minute walk from Le Jardin du Luxembourg.The warm rooms offer free Wi-Fi and flat-screen TVs. Upgraded quarters offer beamed ceilings and antique-style furnishings. Suites add separate living areas with pull-out sofas.A continental breakfast buffet (surcharge) is served in a stone-walled dining room. There's also a stylish lounge with seating adjacent to the lobby.",
        "price": null
    },
    {
        "title": "Familia Hôtel",
        "place_id": "ChIJQdJCpOVx5kcR1aZMBg4BxSM",
        "data_id": "0x47e671e5a442d241:0x23c5010e064ca6d5",
        "data_cid": 2577467521486333653,
        "gps_coordinates": {
            "latitude": 48.8476417,
            "longitude": 2.3515791999999998
        },
        "provider_id": "/g/1tgwrkz1",
        "rating": 4,
        "reviews": 468,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "11 Rue des Écoles, 75005 Paris",
        "operating_hours": {},
        "phone": "+33 1 43 54 55 27",
        "website": "http://hoteles-paris-familia.com/",
        "description": {
            "description_one": "In the Latin Quarter and built in 1865, this quaint Haussmann-style hotel is a 10-minute walk from Notre Dame de Paris and a kilometer Jardin du Luxembourg.",
            "description_two": "The stylish rooms feature traditional wood furnishings, free WiFi, cable TV and minibars, plus soundproof windows and en suite bathrooms. Distinctive touches include exposed beams, stone walls, balconies and 4-poster beds, as well as sepia-toned murals by a local artist.",
            "description_three": "Continental breakfast (surcharge) is served in the charming dining area decorated with tapestries and a mahogany book case."
        },
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=0gmEGuZX52EhLOIwoK14jw&cb_client=search.gws-prod.gps&w=211&h=120&yaw=226.13855&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "11 Rue des Écoles",
        "city": "Paris",
        "zip_code": 75005,
        "country": "FR",
        "reviews_per_1": 30,
        "reviews_per_2": 21,
        "reviews_per_3": 67,
        "reviews_per_4": 148,
        "reviews_per_5": 202,
        "photo_count": 556,
        "logo": "https://lh3.googleusercontent.com/-_5TJx_SfWN4/AAAAAAAAAAI/AAAAAAAAAAA/7vxkZjJlbCg/s44-p-k-no-ns-nd/photo.jpg",
        "owner": "111336290910953621785",
        "category": "hotels",
        "reviews_link": "https://search.google.com/local/reviews?placeid=ChIJQdJCpOVx5kcR1aZMBg4BxSM&authuser=0&hl=en&gl=CA",
        "place_url": "https://www.google.com/maps/preview/place/Familia+H%C3%B4tel,+11+Rue+des+%C3%89coles,+75005+Paris,+France/@48.8476417,2.3515792,2626a,13.1y/data=!4m2!3m1!1s0x47e671e5a442d241:0x23c5010e064ca6d5",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "In the Latin Quarter and built in 1865, this quaint Haussmann-style hotel is a 10-minute walk from Notre Dame de Paris and a kilometer Jardin du Luxembourg.",
            "The stylish rooms feature traditional wood furnishings, free WiFi, cable TV and minibars, plus soundproof windows and en suite bathrooms. Distinctive touches include exposed beams, stone walls, balconies and 4-poster beds, as well as sepia-toned murals by a local artist.",
            "Continental breakfast (surcharge) is served in the charming dining area decorated with tapestries and a mahogany book case."
        ],
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "In the Latin Quarter and built in 1865, this quaint Haussmann-style hotel is a 10-minute walk from Notre Dame de Paris and a kilometer Jardin du Luxembourg.The stylish rooms feature traditional wood furnishings, free WiFi, cable TV and minibars, plus soundproof windows and en suite bathrooms. Distinctive touches include exposed beams, stone walls, balconies and 4-poster beds, as well as sepia-toned murals by a local artist.Continental breakfast (surcharge) is served in the charming dining area decorated with tapestries and a mahogany book case.",
        "price": null
    },
    {
        "title": "Hôtel Taylor",
        "place_id": "ChIJp5mJWg5u5kcRpa9IqXnGLAw",
        "data_id": "0x47e66e0e5a8999a7:0xc2cc679a948afa5",
        "data_cid": 877294253263859621,
        "gps_coordinates": {
            "latitude": 48.8694019,
            "longitude": 2.3592093999999997
        },
        "provider_id": "/g/1tg150v5",
        "rating": 4.5,
        "reviews": 682,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "6 Rue Taylor, 75010 Paris",
        "operating_hours": {},
        "phone": "+33 1 42 40 11 01",
        "website": "http://www.paris-hotel-taylor.com/",
        "description": {
            "description_one": "A 4-minute walk from Jacques Bonsergent metro station in the shabby-chic 10th arr., this elegant hotel is also 8 minutes' walk from the hip shops and restaurants along the Canal St. Martin, and 1.5 km from the Gare du Nord (a metro, RER and Eurostar station).",
            "description_two": "The warm, French Country-style rooms feature wood floors, en suite bathrooms and coffeemakers, as well as free Wi-Fi and flat-screen TVs. Room service is available. There's no air-conditioning.",
            "description_three": "A breakfast buffet is served in a brightly decorated dining room. There's also a guest-use laptop in the reception area."
        },
        "thumbnail": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4no3Yemds9XwH-ANMdkHxzERvZSdZfAPLShaXISxucyote1qXgWOnIdm8CASTjCC7IY02gqKLm916C7Y0pg78jAkL7QN6-Lcc2mq4GWfDHbRJli5-SL9r3etICycweSUdqlTC0Q8=w1600-h1000-k-no",
        "street": "6 Rue Taylor",
        "city": "Paris",
        "zip_code": 75010,
        "country": "FR",
        "reviews_per_1": 14,
        "reviews_per_2": 12,
        "reviews_per_3": 42,
        "reviews_per_4": 142,
        "reviews_per_5": 472,
        "photo_count": 835,
        "logo": "https://lh6.googleusercontent.com/-EfhAdPCVZPY/AAAAAAAAAAI/AAAAAAAAAAA/NFDGARa4Pu4/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "113462577455738593929",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/H%C3%B4tel+Taylor,+6+Rue+Taylor,+75010+Paris,+France/@48.8694019,2.3592094,2624a,13.1y/data=!4m2!3m1!1s0x47e66e0e5a8999a7:0xc2cc679a948afa5",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "A 4-minute walk from Jacques Bonsergent metro station in the shabby-chic 10th arr., this elegant hotel is also 8 minutes' walk from the hip shops and restaurants along the Canal St. Martin, and 1.5 km from the Gare du Nord (a metro, RER and Eurostar station).",
            "The warm, French Country-style rooms feature wood floors, en suite bathrooms and coffeemakers, as well as free Wi-Fi and flat-screen TVs. Room service is available. There's no air-conditioning.",
            "A breakfast buffet is served in a brightly decorated dining room. There's also a guest-use laptop in the reception area."
        ],
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "A 4-minute walk from Jacques Bonsergent metro station in the shabby-chic 10th arr., this elegant hotel is also 8 minutes' walk from the hip shops and restaurants along the Canal St. Martin, and 1.5 km from the Gare du Nord (a metro, RER and Eurostar station).The warm, French Country-style rooms feature wood floors, en suite bathrooms and coffeemakers, as well as free Wi-Fi and flat-screen TVs. Room service is available. There's no air-conditioning.A breakfast buffet is served in a brightly decorated dining room. There's also a guest-use laptop in the reception area.",
        "price": null
    },
    {
        "title": "Hôtel André Latin",
        "place_id": "ChIJHwvYccJx5kcR2u0mzZX1LRE",
        "data_id": "0x47e671c271d80b1f:0x112df595cd26edda",
        "data_cid": 1237915496337567194,
        "gps_coordinates": {
            "latitude": 48.8428712,
            "longitude": 2.3425952999999997
        },
        "provider_id": "/g/1tgn40x_",
        "rating": 4.1,
        "reviews": 944,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "50 Rue Gay-Lussac, 75005 Paris",
        "operating_hours": {},
        "phone": "+33 1 43 54 76 60",
        "website": "http://www.hotelandrelatin.com/",
        "description": {
            "description_one": "Set in a 19th-century building in the Latin Quarter, this low-key hotel is a 7-minute walk from the Panthéon and a 9-minute walk from the Jardin du Luxembourg.",
            "description_two": "The subdued rooms feature wood floors and en suite bathrooms, plus flat-screen TVs and free Wi-Fi. Some add balconies.",
            "description_three": "A breakfast buffet (available for a surcharge) is served in-room or in casual dining rooms. There’s also a guest computer in the lobby."
        },
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=M0cQAySpzxCM4yznbAcBuA&cb_client=search.gws-prod.gps&w=211&h=120&yaw=235.7931&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "50 Rue Gay-Lussac",
        "city": "Paris",
        "zip_code": 75005,
        "country": "FR",
        "reviews_per_1": 49,
        "reviews_per_2": 38,
        "reviews_per_3": 102,
        "reviews_per_4": 302,
        "reviews_per_5": 453,
        "photo_count": 683,
        "logo": "https://lh5.googleusercontent.com/-HH6IzfT6sm4/AAAAAAAAAAI/AAAAAAAAAAA/6N6eyFIpDg4/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "105059282152587406987",
        "category": "hotels",
        "reviews_link": null,
        "service_option": [
            {
                "name": "Crowd",
                "slug": "crowd",
                "options": [
                    {
                        "name": "LGBTQ+ friendly",
                        "slug": "/geo/type/establishment_poi/welcomes_lgbtq"
                    }
                ]
            }
        ],
        "place_url": "https://www.google.com/maps/preview/place/H%C3%B4tel+Andr%C3%A9+Latin,+50+Rue+Gay-Lussac,+75005+Paris,+France/@48.8428712,2.3425953,2626a,13.1y/data=!4m2!3m1!1s0x47e671c271d80b1f:0x112df595cd26edda",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "Set in a 19th-century building in the Latin Quarter, this low-key hotel is a 7-minute walk from the Panthéon and a 9-minute walk from the Jardin du Luxembourg.",
            "The subdued rooms feature wood floors and en suite bathrooms, plus flat-screen TVs and free Wi-Fi. Some add balconies.",
            "A breakfast buffet (available for a surcharge) is served in-room or in casual dining rooms. There’s also a guest computer in the lobby."
        ],
        "state": null,
        "not_claimed": false,
        "email": [
            "[email protected]",
            "[email protected]"
        ],
        "social_media_links": [
            "https://twitter.com/HotelAndreLatin"
        ],
        "facebook": null,
        "twitter": "https://twitter.com/HotelAndreLatin",
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "Set in a 19th-century building in the Latin Quarter, this low-key hotel is a 7-minute walk from the Panthéon and a 9-minute walk from the Jardin du Luxembourg.The subdued rooms feature wood floors and en suite bathrooms, plus flat-screen TVs and free Wi-Fi. Some add balconies.A breakfast buffet (available for a surcharge) is served in-room or in casual dining rooms. There’s also a guest computer in the lobby.",
        "price": null
    },
    {
        "title": "Hôtel Fabric",
        "place_id": "ChIJ5RPFevxt5kcRlmVGi7EQVsk",
        "data_id": "0x47e66dfc7ac513e5:0xc95610b18b466596",
        "data_cid": -3938942469357017706,
        "gps_coordinates": {
            "latitude": 48.8630528,
            "longitude": 2.3728058
        },
        "provider_id": "/g/12qh5tn2z",
        "rating": 4.8,
        "reviews": 492,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "31 Rue de la Folie Méricourt, 75011 Paris",
        "operating_hours": {},
        "phone": "+33 1 43 57 27 00",
        "website": "http://www.hotelfabric.com/",
        "description": {
            "description_one": "In a former textile factory in the trendy Oberkampf neighborhood of Paris, this industrial-chic hotel is an 8-minute walk from Cirque d'hiver Bouglione circus hall and 12 minutes on foot from République metro station.",
            "description_two": "Vibrant rooms come with flat-screen TVs, free Wi-Fi and minibars, as well as cement-tiled bathrooms with rainfall showers. Some have red-brick walls, sofas and/or courtyard views.",
            "description_three": "Amenities include a hip lounge, a self-service bar, a gym, and a hammam and spa. A breakfast buffet carries a surcharge."
        },
        "thumbnail": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqeWRnm5IvhYJphLlDX4PgdHenTjSWJsivQIcWs_iRbPrVZF_S-3myFp0FL1ekXMf2mVLHuug9Bd_B-HCI_R5NknbfVvNfvuXbiayvla9xTFBntYSKwkDqJsa2w-xl0q0ZgyqVo3A=w1600-h1000-k-no",
        "street": "31 Rue de la Folie Méricourt",
        "city": "Paris",
        "zip_code": 75011,
        "country": "FR",
        "reviews_per_1": 2,
        "reviews_per_2": 4,
        "reviews_per_3": 6,
        "reviews_per_4": 54,
        "reviews_per_5": 426,
        "photo_count": 834,
        "logo": "https://lh6.googleusercontent.com/-pfyuHuQ-K90/AAAAAAAAAAI/AAAAAAAAAAA/SK-_KcxT4fA/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "108904041599340468143",
        "category": "hotels",
        "reviews_link": null,
        "service_option": [
            {
                "name": "Crowd",
                "slug": "crowd",
                "options": [
                    {
                        "name": "LGBTQ+ friendly",
                        "slug": "/geo/type/establishment_poi/welcomes_lgbtq"
                    }
                ]
            }
        ],
        "place_url": "https://www.google.com/maps/preview/place/H%C3%B4tel+Fabric,+31+Rue+de+la+Folie+M%C3%A9ricourt,+75011+Paris,+France/@48.8630528,2.3728058,2625a,13.1y/data=!4m2!3m1!1s0x47e66dfc7ac513e5:0xc95610b18b466596",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "In a former textile factory in the trendy Oberkampf neighborhood of Paris, this industrial-chic hotel is an 8-minute walk from Cirque d'hiver Bouglione circus hall and 12 minutes on foot from République metro station.",
            "Vibrant rooms come with flat-screen TVs, free Wi-Fi and minibars, as well as cement-tiled bathrooms with rainfall showers. Some have red-brick walls, sofas and/or courtyard views.",
            "Amenities include a hip lounge, a self-service bar, a gym, and a hammam and spa. A breakfast buffet carries a surcharge."
        ],
        "state": null,
        "not_claimed": false,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [
            "https://www.tiktok.com/@hotelfabricparis "
        ],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": "https://www.tiktok.com/@hotelfabricparis ",
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "In a former textile factory in the trendy Oberkampf neighborhood of Paris, this industrial-chic hotel is an 8-minute walk from Cirque d'hiver Bouglione circus hall and 12 minutes on foot from République metro station.Vibrant rooms come with flat-screen TVs, free Wi-Fi and minibars, as well as cement-tiled bathrooms with rainfall showers. Some have red-brick walls, sofas and/or courtyard views.Amenities include a hip lounge, a self-service bar, a gym, and a hammam and spa. A breakfast buffet carries a surcharge.",
        "price": null
    },
    {
        "title": "Best Stay Appart Hotel",
        "place_id": "ChIJMQRZv8pv5kcR1WlvmjQyKlg",
        "data_id": "0x47e66fcabf590431:0x582a32349a6f69d5",
        "data_cid": 6352945425870186965,
        "gps_coordinates": {
            "latitude": 48.869594299999996,
            "longitude": 2.3437844
        },
        "provider_id": "/g/11fqb43xyc",
        "rating": 4.2,
        "reviews": 60,
        "type": "Hotel",
        "types": [
            "Hotel",
            "Extended stay hotel",
            "Furnished apartment building",
            "Holiday apartment rental",
            "Holiday apartment"
        ],
        "address": "35 Rue des Jeuneurs, 75002 Paris",
        "operating_hours": {},
        "phone": "+33 9 54 54 46 66",
        "website": "https://beststay.fr/",
        "description": {},
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=YEV5ct9Qk__Ykpzmnln3Mw&cb_client=search.gws-prod.gps&w=211&h=120&yaw=194.73737&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "35 Rue des Jeuneurs",
        "city": "Paris",
        "zip_code": 75002,
        "country": "FR",
        "reviews_per_1": 10,
        "reviews_per_2": 2,
        "reviews_per_3": 0,
        "reviews_per_4": 1,
        "reviews_per_5": 47,
        "photo_count": 58,
        "logo": "https://lh4.googleusercontent.com/-NszqV9MCdzE/AAAAAAAAAAI/AAAAAAAAAAA/dasJe_QM8dg/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "117244949811235008026",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/Best+Stay+Appart+Hotel,+35+Rue+des+Jeuneurs,+75002+Paris,+France/@48.8695943,2.3437844,2624a,13.1y/data=!4m2!3m1!1s0x47e66fcabf590431:0x582a32349a6f69d5",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": null,
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]",
            "[email protected]"
        ],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "",
        "price": null
    },
    {
        "title": "Hotel du Bresil",
        "place_id": "ChIJa-zoLd1x5kcRuWstUqlOnO0",
        "data_id": "0x47e671dd2de8ec6b:0xed9c4ea9522d6bb9",
        "data_cid": -1325097701218620487,
        "gps_coordinates": {
            "latitude": 48.8464489,
            "longitude": 2.3413445999999998
        },
        "provider_id": "/g/1th6d4jg",
        "rating": 3.9,
        "reviews": 427,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "10 Rue Le Goff, 75005 Paris",
        "operating_hours": {},
        "phone": "+33 1 43 54 76 11",
        "website": "http://www.hoteldubresil.com/",
        "description": {
            "description_one": "A 2-minute walk from the 17th-century Jardin du Luxembourg, this traditional hotel in the 19th-century former home of Sigmund Freud is a minute's walk from Luxembourg RER station and a 14-minute walk from Cathédrale Notre-Dame de Paris.",
            "description_two": "Simply furnished rooms with courtyard or street views, and modest decor, feature en suite shower-only bathrooms, flat-screen TVs with satellite channels, and Wi-Fi. Upgraded rooms add sloped ceilings and exposed beams.",
            "description_three": "Breakfast is served in a colorful dining room with wood-paneled features."
        },
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=aVhRP5MM-x39X-F2HA45Cg&cb_client=search.gws-prod.gps&w=211&h=120&yaw=320.09412&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "10 Rue Le Goff",
        "city": "Paris",
        "zip_code": 75005,
        "country": "FR",
        "reviews_per_1": 26,
        "reviews_per_2": 35,
        "photo_count": 392,
        "logo": "https://lh6.googleusercontent.com/-ywycGIj7Y5E/AAAAAAAAAAI/AAAAAAAAAAA/FxQp5STyFL8/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "108707030392688390047",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/Hotel+du+Bresil,+10+Rue+Le+Goff,+75005+Paris,+France/@48.8464489,2.3413446,2626a,13.1y/data=!4m2!3m1!1s0x47e671dd2de8ec6b:0xed9c4ea9522d6bb9",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "A 2-minute walk from the 17th-century Jardin du Luxembourg, this traditional hotel in the 19th-century former home of Sigmund Freud is a minute's walk from Luxembourg RER station and a 14-minute walk from Cathédrale Notre-Dame de Paris.",
            "Simply furnished rooms with courtyard or street views, and modest decor, feature en suite shower-only bathrooms, flat-screen TVs with satellite channels, and Wi-Fi. Upgraded rooms add sloped ceilings and exposed beams.",
            "Breakfast is served in a colorful dining room with wood-paneled features."
        ],
        "reviews_per_3": 78,
        "reviews_per_4": 124,
        "reviews_per_5": 164,
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "A 2-minute walk from the 17th-century Jardin du Luxembourg, this traditional hotel in the 19th-century former home of Sigmund Freud is a minute's walk from Luxembourg RER station and a 14-minute walk from Cathédrale Notre-Dame de Paris.Simply furnished rooms with courtyard or street views, and modest decor, feature en suite shower-only bathrooms, flat-screen TVs with satellite channels, and Wi-Fi. Upgraded rooms add sloped ceilings and exposed beams.Breakfast is served in a colorful dining room with wood-paneled features.",
        "price": null
    },
    {
        "title": "Hôtel Marais HÔme",
        "place_id": "ChIJSa2Q0Adu5kcRmgyh_iKqh-Y",
        "data_id": "0x47e66e07d090ad49:0xe687aa22fea10c9a",
        "data_cid": -1835311255852610406,
        "gps_coordinates": {
            "latitude": 48.8654703,
            "longitude": 2.3656664
        },
        "provider_id": "/g/12hk2nlgh",
        "rating": 4.4,
        "reviews": 609,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "38 Bd du Temple, 75011 Paris",
        "operating_hours": {},
        "phone": "+33 1 48 05 79 76",
        "website": "http://www.hotel-marais-home.fr/",
        "description": {
            "description_one": "A 4-minute walk from both the Oberkampf metro station and the Cirque d'Hiver, this stylish hotel is also a 5-minute stroll from the lively Place de la République.",
            "description_two": "Colorful rooms feature modern decor, updated bathrooms and flat-screen TVs, plus Wi-Fi. Upgraded rooms offer elements such as Nespresso machines, 2 levels, pull-out sofas, and balconies with views of Sacré-Cœur.",
            "description_three": "Complimentary coffee and pastries are provided. Additional amenities include 4 meeting rooms, an indoor patio and a 6th-floor terrace. There’s also an exercise room, a sauna and a hammam, plus guest iPads. A breakfast buffet is offered in a whimsical dining room."
        },
        "thumbnail": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nr9HHa1pibEE7pbSzJAN6q6eAmKk-QUfasFsD-deD_FzH5jzhzy0N3IWAXdSh7I0rX7ttUPcGi9JyhUmlKjaLV1cW8n5VZJqfFwYwY4IUJOOjK1gxkAYvx3N6ovJ2s_dNhDshRX=w1600-h1000-k-no",
        "street": "38 Bd du Temple",
        "city": "Paris",
        "zip_code": 75011,
        "country": "FR",
        "reviews_per_1": 12,
        "reviews_per_2": 16,
        "reviews_per_3": 42,
        "reviews_per_4": 175,
        "reviews_per_5": 364,
        "photo_count": 534,
        "logo": "https://lh5.googleusercontent.com/-MPx5GAJ1sFU/AAAAAAAAAAI/AAAAAAAAAAA/w3Di3GPkchA/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "108250246790242731004",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/H%C3%B4tel+Marais+H%C3%94me,+38+Bd+du+Temple,+75011+Paris,+France/@48.8654703,2.3656664,2625a,13.1y/data=!4m2!3m1!1s0x47e66e07d090ad49:0xe687aa22fea10c9a",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "A 4-minute walk from both the Oberkampf metro station and the Cirque d'Hiver, this stylish hotel is also a 5-minute stroll from the lively Place de la République.",
            "Colorful rooms feature modern decor, updated bathrooms and flat-screen TVs, plus Wi-Fi. Upgraded rooms offer elements such as Nespresso machines, 2 levels, pull-out sofas, and balconies with views of Sacré-Cœur.",
            "Complimentary coffee and pastries are provided. Additional amenities include 4 meeting rooms, an indoor patio and a 6th-floor terrace. There’s also an exercise room, a sauna and a hammam, plus guest iPads. A breakfast buffet is offered in a whimsical dining room."
        ],
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "A 4-minute walk from both the Oberkampf metro station and the Cirque d'Hiver, this stylish hotel is also a 5-minute stroll from the lively Place de la République.Colorful rooms feature modern decor, updated bathrooms and flat-screen TVs, plus Wi-Fi. Upgraded rooms offer elements such as Nespresso machines, 2 levels, pull-out sofas, and balconies with views of Sacré-Cœur.Complimentary coffee and pastries are provided. Additional amenities include 4 meeting rooms, an indoor patio and a 6th-floor terrace. There’s also an exercise room, a sauna and a hammam, plus guest iPads. A breakfast buffet is offered in a whimsical dining room.",
        "price": null
    },
    {
        "title": "Hotel Andrea Rivoli",
        "place_id": "ChIJsVzNYh5u5kcRPsijnhvd4cI",
        "data_id": "0x47e66e1e62cd5cb1:0xc2e1dd1b9ea3c83e",
        "data_cid": -4403995849896245186,
        "gps_coordinates": {
            "latitude": 48.8581645,
            "longitude": 2.3502755
        },
        "provider_id": "/g/11l2vn4x6s",
        "rating": 3.4,
        "reviews": 16,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "3 Rue Saint-Bon, 75004 Paris",
        "operating_hours": {},
        "website": "https://hotelandrea.paris/fr/",
        "description": {},
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=xrgeWL_3JjQibOuUnvNqqQ&cb_client=search.gws-prod.gps&w=211&h=120&yaw=293.8028&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "3 Rue Saint-Bon",
        "city": "Paris",
        "zip_code": 75004,
        "country": "FR",
        "reviews_per_1": 1,
        "reviews_per_2": 4,
        "reviews_per_3": 4,
        "reviews_per_4": 2,
        "reviews_per_5": 5,
        "photo_count": 9,
        "not_claimed": true,
        "owner": "109862055213326030906",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/Hotel+Andrea+Rivoli,+3+Rue+Saint-Bon,+75004+Paris,+France/@48.8581645,2.3502755,2625a,13.1y/data=!4m2!3m1!1s0x47e66e1e62cd5cb1:0xc2e1dd1b9ea3c83e",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": null,
        "phone": null,
        "state": null,
        "logo": null,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "",
        "price": null
    },
    {
        "title": "Grand Hotel Lafayette",
        "place_id": "ChIJJeO9FQlv5kcRBdgS_zc7H-Q",
        "data_id": "0x47e66f0915bde325:0xe41f3b37ff12d805",
        "data_cid": -2008821797095286779,
        "gps_coordinates": {
            "latitude": 48.875011099999995,
            "longitude": 2.3416489
        },
        "provider_id": "/g/11tst1g07r",
        "rating": 4.4,
        "reviews": 185,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "6 Rue Buffault, 75009 Paris",
        "operating_hours": {},
        "phone": "+33 1 40 22 04 34",
        "website": "https://grandhotellafayette.fr/",
        "description": {},
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=GsV5v9PePJpsuq3KjdlGhg&cb_client=search.gws-prod.gps&w=211&h=120&yaw=84.638535&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "6 Rue Buffault",
        "city": "Paris",
        "zip_code": 75009,
        "country": "FR",
        "reviews_per_1": 11,
        "reviews_per_2": 2,
        "reviews_per_3": 12,
        "reviews_per_4": 38,
        "reviews_per_5": 122,
        "photo_count": 155,
        "logo": "https://lh6.googleusercontent.com/-9BuRoC05XOs/AAAAAAAAAAI/AAAAAAAAAAA/tUSf3RIdN2c/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "115492154834504356902",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/Grand+Hotel+Lafayette,+6+Rue+Buffault,+75009+Paris,+France/@48.8750111,2.3416489,2624a,13.1y/data=!4m2!3m1!1s0x47e66f0915bde325:0xe41f3b37ff12d805",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": null,
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [
            "https://www.facebook.com/grandhotellafayette",
            "https://www.instagram.com/grandhotellafayette"
        ],
        "facebook": "https://www.facebook.com/grandhotellafayette",
        "twitter": null,
        "instagram": "https://www.instagram.com/grandhotellafayette",
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "",
        "price": null
    },
    {
        "title": "Hôtel Le Milie Rose",
        "place_id": "ChIJFaGDghNu5kcRZp93rbRE5HQ",
        "data_id": "0x47e66e138283a115:0x74e444b4ad779f66",
        "data_cid": 8422932745884770150,
        "gps_coordinates": {
            "latitude": 48.8736805,
            "longitude": 2.3520847
        },
        "provider_id": "/g/11nghv_mhx",
        "rating": 4.8,
        "reviews": 1026,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "22 R. des Petites Écuries, 75010 Paris",
        "operating_hours": {},
        "phone": "+33 1 84 25 72 32",
        "website": "https://hotellemilierose.com/",
        "description": {
            "description_one": "Set among bars and cafes in the 10th arrondissement, this refined hotel is an 8-minute walk from a metro station, 2 km from the Louvre Museum and 3 km from Notre-Dame Cathedral.",
            "description_two": "The chic rooms have Wi-Fi and flat-screen TVs, as well as minibars, and tea and coffeemakers. Upgraded rooms feature balconies. Room service is available.",
            "description_three": "There's a bar, a lounge and a furnished patio, in addition to a breakfast buffet."
        },
        "thumbnail": "https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid=7oTSOQqO0HQrRBFNxrpzOA&cb_client=search.gws-prod.gps&w=211&h=120&yaw=20.786829&pitch=0&thumbfov=100&w=1600&h=1000&w=1600&h=1000",
        "street": "22 R. des Petites Écuries",
        "city": "Paris",
        "zip_code": 75010,
        "country": "FR",
        "reviews_per_1": 26,
        "reviews_per_2": 9,
        "reviews_per_3": 15,
        "reviews_per_4": 88,
        "reviews_per_5": 888,
        "photo_count": 459,
        "logo": "https://lh3.googleusercontent.com/-3TY2SMzUXW4/AAAAAAAAAAI/AAAAAAAAAAA/fDs2u1rTGIo/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "117160850734929271398",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/H%C3%B4tel+Le+Milie+Rose,+22+R.+des+Petites+%C3%89curies,+75010+Paris,+France/@48.8736805,2.3520847,2624a,13.1y/data=!4m2!3m1!1s0x47e66e138283a115:0x74e444b4ad779f66",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "Set among bars and cafes in the 10th arrondissement, this refined hotel is an 8-minute walk from a metro station, 2 km from the Louvre Museum and 3 km from Notre-Dame Cathedral.",
            "The chic rooms have Wi-Fi and flat-screen TVs, as well as minibars, and tea and coffeemakers. Upgraded rooms feature balconies. Room service is available.",
            "There's a bar, a lounge and a furnished patio, in addition to a breakfast buffet."
        ],
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "Set among bars and cafes in the 10th arrondissement, this refined hotel is an 8-minute walk from a metro station, 2 km from the Louvre Museum and 3 km from Notre-Dame Cathedral.The chic rooms have Wi-Fi and flat-screen TVs, as well as minibars, and tea and coffeemakers. Upgraded rooms feature balconies. Room service is available.There's a bar, a lounge and a furnished patio, in addition to a breakfast buffet.",
        "price": null
    },
    {
        "title": "Hôtel Brady - Gare de l'Est - Paris 10e",
        "place_id": "ChIJGYg_JxJu5kcRu9A4YC6-tt0",
        "data_id": "0x47e66e12273f8819:0xddb6be2e6038d0bb",
        "data_cid": -2470578239174029125,
        "gps_coordinates": {
            "latitude": 48.8712222,
            "longitude": 2.3550144
        },
        "provider_id": "/g/1tgxhcbt",
        "rating": 4,
        "reviews": 883,
        "type": "Hotel",
        "types": [
            "Hotel"
        ],
        "address": "31 Bd de Strasbourg, 75010 Paris",
        "operating_hours": {},
        "phone": "+33 1 47 70 25 00",
        "website": "https://www.hotelbrady.com/?utm_source=gmb&utm_medium=organic&utm_campaign=gmb_brady",
        "description": {
            "description_one": "Set in the Canal Saint-Martin district, this relaxed hotel is an 8-minute walk from Gare de l’Est metro station and 2 km from The Louvre museum.",
            "description_two": "The bright rooms have complimentary Wi-Fi, flat-screen TVs and desks. Up to 2 kids age 12 and under stay for no charge with their parents. There's no air-conditioning.",
            "description_three": "A breakfast buffet is offered for a surcharge. Pets may be accepted with prior notice."
        },
        "thumbnail": "https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqag3KDnwBD3bU4EwwveiAa7ExoIp0ViPTeXGwzJvwEpb5GhFfm-kpYJPV7aZQHWxal-EB6g8Lba7rdrxR7HOBFzA2hJdA-NJUMtcjpNWYqc7xnKZUKgMjYNRGJ7mXZdmVKU2uK=w1600-h1000-k-no",
        "street": "31 Bd de Strasbourg",
        "city": "Paris",
        "zip_code": 75010,
        "country": "FR",
        "reviews_per_1": 48,
        "reviews_per_2": 47,
        "reviews_per_3": 134,
        "reviews_per_4": 277,
        "reviews_per_5": 377,
        "photo_count": 753,
        "logo": "https://lh6.googleusercontent.com/-oDJIYOfzCZY/AAAAAAAAAAI/AAAAAAAAAAA/B8uJiwW6FPE/s80-p-k-no-ns-nd/photo.jpg",
        "owner": "104150452322626808709",
        "category": "hotels",
        "reviews_link": null,
        "place_url": "https://www.google.com/maps/preview/place/H%C3%B4tel+Brady+-+Gare+de+l'Est+-+Paris+10e,+31+Bd+de+Strasbourg,+75010+Paris,+France/@48.8712222,2.3550144,2624a,13.1y/data=!4m2!3m1!1s0x47e66e12273f8819:0xddb6be2e6038d0bb",
        "open_state": null,
        "note_from_owner": null,
        "description_arr": [
            "Set in the Canal Saint-Martin district, this relaxed hotel is an 8-minute walk from Gare de l’Est metro station and 2 km from The Louvre museum.",
            "The bright rooms have complimentary Wi-Fi, flat-screen TVs and desks. Up to 2 kids age 12 and under stay for no charge with their parents. There's no air-conditioning.",
            "A breakfast buffet is offered for a surcharge. Pets may be accepted with prior notice."
        ],
        "state": null,
        "not_claimed": false,
        "service_option": null,
        "email": [
            "[email protected]"
        ],
        "social_media_links": [],
        "facebook": null,
        "twitter": null,
        "instagram": null,
        "linkedin": null,
        "youtube": null,
        "pinterest": null,
        "tumblr": null,
        "reddit": null,
        "snapchat": null,
        "quora": null,
        "flickr": null,
        "vimeo": null,
        "medium": null,
        "soundcloud": null,
        "tiktok": null,
        "mix": null,
        "vk": null,
        "meetup": null,
        "operation_state": "OPEN",
        "full_description": "Set in the Canal Saint-Martin district, this relaxed hotel is an 8-minute walk from Gare de l’Est metro station and 2 km from The Louvre museum.The bright rooms have complimentary Wi-Fi, flat-screen TVs and desks. Up to 2 kids age 12 and under stay for no charge with their parents. There's no air-conditioning.A breakfast buffet is offered for a surcharge. Pets may be accepted with prior notice.",
        "price": null
    }
]

Description

  • The response contains a list of places that match the search query. Each entry includes details like title, place ID, GPS coordinates, rating, reviews, type, address, phone number, website, descriptions, and thumbnail.

Note: Replace Your_Access_Token with your actual API access token.