Google Places Reviews Plus avatar

Google Places Reviews Plus

Try Actor

$12.00/month

Go to Store
Google Places Reviews Plus

Google Places Reviews Plus

canadesk/google-places-reviews-plus
Try Actor

$12.00/month

No limits. Get all reviews for places such as monuments, restaurants or hotels from Google Maps! Also includes likes, images, replies and filters. It's (very) fast and costs little!

You can access the Google Places Reviews Plus programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9    "urls": [
10        "chateau de versailles france",
11        "https://maps.app.goo.gl/WQLepEgAgPCCtqot7",
12        "https://www.google.com/maps/place/Disneyland+Park/@33.8120962,-117.9215491,17z/data=!4m8!3m7!1s0x80dcd7d12b3b5e6b:0x2ef62f8418225cfa!8m2!3d33.8120918!4d-117.9189742!9m1!1b1!16zL20vMDJmenM?hl=en-GB&entry=ttu&g_ep=EgoyMDI0MTIwOS4wIKXMDSoASAFQAw%3D%3D",
13    ],
14    "keyword": "",
15    "lang": "all",
16    "source": "",
17    "daterange": [],
18    "country": "us",
19    "mylatitude": "19.935915607405615",
20    "mylongitude": "-155.17564762636795",
21    "proxy": { "useApifyProxy": True },
22}
23
24# Run the Actor and wait for it to finish
25run = client.actor("canadesk/google-places-reviews-plus").call(run_input=run_input)
26
27# Fetch and print Actor results from the run's dataset (if there are any)
28print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
29for item in client.dataset(run["defaultDatasetId"]).iterate_items():
30    print(item)
31
32# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

Google Places Reviews Plus API in Python

The Apify API client for Python is the official library that allows you to use Google Places Reviews Plus API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

pip install apify-client

Other API clients include:

Developer
Maintained by Community

Actor Metrics

  • 1 monthly user

  • 0 No stars yet

  • Created in Dec 2024

  • Modified 7 hours ago