More threads by xavier_colomes

Joined
Jun 14, 2022
Messages
13
Reaction score
0
Hi! I'm trying to "build" the link to an specific review using the data available from the API, but looks like it's not possible. Has anyone else tried it? Is there a way to achieve it? And, is it possible to get it via scrapping?

Thanks!
 
If you are referring to the public-facing review, then no, there is no way to link to it by using IDs in the API.

The front-end versions of Google Maps and Google Search generate a unique direct link when a user clicks the "Share" button on a specific review. Using browser automation, you could achieve what you want, but scaling it might be tricky.
 
Hi! I'm trying to "build" the link to an specific review using the data available from the API, but looks like it's not possible. Has anyone else tried it? Is there a way to achieve it? And, is it possible to get it via scrapping?

Thanks!

You’re not missing anything, the API doesn’t provide a way to generate direct links to individual reviews, even when you have the review ID.
Those links are created on the frontend, which is why they can’t be reproduced directly from API data.
In most cases, people rely on manual extraction or combine it with internal workflows depending on whether the goal is monitoring, reporting, or handling review issues. Scraping can work, but it’s usually unstable and not ideal long-term.
Unfortunately, there isn’t a fully reliable way to generate those links programmatically at the moment.
 
Back
Top Bottom