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 + Full details. 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!

Developer
Maintained by Community

Actor Metrics

  • 2 monthly users

  • No reviews yet

  • 2 bookmarks

  • >99% runs succeeded

  • Created in Dec 2024

  • Modified 3 months ago

You can access the Google Places Reviews Plus programmatically from your own 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.

1# Start Server-Sent Events (SSE) session and keep it running
2curl "https://actors-mcp-server.apify.actor/sse?token=<YOUR_API_TOKEN>&actors=canadesk/google-places-reviews-plus"
3
4# Session id example output:
5# event: endpoint
6# data: /message?sessionId=9d820491-38d4-4c7d-bb6a-3b7dc542f1fa

Using Google Places Reviews Plus via Model Context Protocol (MCP) server

MCP server lets you use Google Places Reviews Plus within your AI workflows. Send API requests to trigger actions and receive real-time results. Take the received sessionId and use it to communicate with the MCP server. The message starts the Google Places Reviews Plus Actor with the provided input.

1curl -X POST "https://actors-mcp-server.apify.actor/message?token=<YOUR_API_TOKEN>&session_id=<SESSION_ID>" -H "Content-Type: application/json" -d '{
2  "jsonrpc": "2.0",
3  "id": 1,
4  "method": "tools/call",
5  "params": {
6    "arguments": {
7      "urls": [
8            "eiffel tower france",
9            "https://maps.app.goo.gl/dssCoQXwEyRMKF5D9",
10            "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",
11            "https://www.google.com/maps/place/The+Beatrice/@41.8190167,-71.4102502,15.83z/data=!3m1!5s0x89e445169851b4bf:0xfe7a077c429aeb7c!4m9!3m8!1s0x89e445e36767878d:0x2359615e2c4bfb51!5m2!4m1!1i2!8m2!3d41.8247943!4d-71.4102758!16s%2Fg%2F11h6q7qbc3?entry=ttu&g_ep=EgoyMDI0MTIxMC4wIKXMDSoASAFQAw%3D%3D",
12            "https://www.google.com/maps/place/Free+Play+Bar+Arcade/@41.8200372,-71.4126039,17.19z/data=!4m6!3m5!1s0x89e4456cee29fa73:0x805935ff8c3f27ec!8m2!3d41.8200612!4d-71.4120607!16s%2Fg%2F11d_yz7_b4?entry=ttu&g_ep=EgoyMDI0MTIxMC4wIKXMDSoASAFQAw%3D%3D",
13            "https://www.google.com/maps/place/Gracie'\''s/@41.8212956,-71.4202054,17z/data=!4m10!1m2!2m1!1sRestaurants!3m6!1s0x89e44512efe71ee9:0x2fc7231d6ad290c!8m2!3d41.822057!4d-71.4158905!15sCgtSZXN0YXVyYW50c1oNIgtyZXN0YXVyYW50c5IBFmZpbmVfZGluaW5nX3Jlc3RhdXJhbnTgAQA!16s%2Fg%2F1th5dl8g"
14      ],
15      "lang": "all",
16      "daterange": [],
17      "country": "us",
18      "mylatitude": "19.935915607405615",
19      "mylongitude": "-155.17564762636795",
20      "proxy": {
21            "useApifyProxy": true
22      }
23},
24    "name": "canadesk/google-places-reviews-plus"
25  }
26}'

The response should be: Accepted. You should received response via SSE (JSON) as:

1event: message
2data: {
3  "result": {
4    "content": [
5      {
6        "type": "text",
7        "text": "ACTOR_RESPONSE"
8      }
9    ]
10  }
11}

Configure local MCP Server via standard input/output for Google Places Reviews Plus

You can connect to the MCP Server using clients like ClaudeDesktop and LibreChat or build your own. The server can run both locally and remotely, giving you full flexibility. Set up the server in the client configuration as follows:

1{
2  "mcpServers": {
3    "actors-mcp-server": {
4      "command": "npx",
5      "args": [
6        "-y",
7        "@apify/actors-mcp-server",
8        "--actors",
9        "canadesk/google-places-reviews-plus"
10      ],
11      "env": {
12        "APIFY_TOKEN": "<YOUR_API_TOKEN>"
13      }
14    }
15  }
16}

You can further access the MCP client through the Tester MCP Client, a chat user interface to interact with the server.

To get started, check out the documentation and example clients. If you are interested in learning more about our MCP server, check out our blog post.