What "Google review link" actually means
There are three different links a business owner might mean when they say "my Google review link." Two of them are bad. One of them is the only one worth using.
The bad ones:
- The Google Maps URL —
https://www.google.com/maps/place/.... This sends customers to your map listing, where they have to scroll, find the reviews tab, tap "Write a review," and only then start writing. Three taps of friction kills 40-60% of conversions. - The Google search URL —
https://www.google.com/search?q=Your+Business+Name. Even worse. Customers land on a search results page where the review CTA is buried in the knowledge panel, often below the fold on mobile.
The good one — the one your QR codes and post-service texts should point at — is the deep review URL, the link that opens the review form directly when a customer taps it. It looks like this:
https://search.google.com/local/writereview?placeid=ChIJN1t_tDeuEmsRUsoyG83frY4
That placeid parameter is the unique identifier Google assigns to your business. The whole URL takes the customer from tap to "rate the business" in one screen. No scrolling, no searching, no menu hunting. It is what every modern review-request flow should be sending.
What follows is the three ways to get yours, ranked by speed.
Method 1 — Use the SignalRoute free tool (60 seconds)
The fastest path is the free Google review link generator at /tools/google-review-link. Type your business name and city, the tool finds your Place ID, and returns the deep review URL ready to copy.
The tool is free, requires no signup, and works for any business with a verified Google Business Profile. It is built on the same Place ID lookup that paid tools charge for, exposed without a paywall because it does not cost us anything to run and because the link itself is the prerequisite for any review-request flow worth building.
If you only need the link, copy it from the tool and you are done. If you want the full story for context, the next two methods explain where the link comes from underneath.
Method 2 — From Google Maps directly
Google does technically expose a way to get the deep review link from inside Google Maps, though they have buried it pretty effectively. Here is the path:
- Open Google Maps on a desktop browser (not mobile — the share menu is different)
- Search for your business name and city
- Click your business listing in the results
- In the listing panel that opens, scroll to the Reviews section
- Look for the "Write a review" button — but do not click it
- Instead, find and click the share icon next to your business name at the top of the panel
- In the share dialog, you will see a URL — but this is the Maps URL, not the review URL
- Switch tabs: in the share dialog, look for a "Embed a map" or "Short URL" option
- Google will generate a
maps.app.goo.gl/...short link
Now here is the part Google does not tell you: that short link still opens Maps, not the review form. To get the actual review form deep link, you have to:
- Back in the listing panel, click the three-dot menu next to your business name
- Select "Share or embed map" if you see it, or copy the URL from the address bar
- Manually extract the place ID from the URL (it appears as a
!1s0x...segment in the path)
This is the path Google's documentation pretends is straightforward. It is not. Most operators give up halfway through and end up using the wrong link. The reason the SignalRoute tool exists is that this path is too brittle for a real workflow.
If you want to do it once, by hand, the pieces are above. For anything you will use repeatedly, use the tool.
Method 3 — The Google Places API (for developers)
If you are wiring this into your own application — a custom dispatch system, a homegrown review tool, an internal dashboard — the right path is the Google Places API.
The high-level flow:
- Sign up for a Google Cloud Platform account and enable the Places API for a project
- Create an API key with Places API access (and restrict it to your domain or IP for production)
- Make a Place Search request:
https://maps.googleapis.com/maps/api/place/findplacefromtext/json?input=Your+Business+Name+City&inputtype=textquery&fields=place_id&key=YOUR_API_KEY - The response includes a
place_idfield — that is your Place ID - Construct the deep review URL:
https://search.google.com/local/writereview?placeid=PLACE_ID
Costs: the Place Search endpoint is billed per request. Google gives a $200/month credit which covers thousands of lookups for a small business, so the practical cost for most use cases is zero — but you do need a credit card on file to enable the API in the first place.
Caveats: the Place ID is stable but not guaranteed permanent. If Google merges your listing with a duplicate, or you migrate to a new Business Profile, the Place ID can change. Re-fetch periodically. The official guidance is in Google's Place ID documentation.
What to do with the link once you have it
The link is the easy part. The hard part is getting it in front of the customer at the right moment, in the right channel, with the right framing. Three principles:
- Send it via SMS, 30 minutes after service ends. Conversion rates of 30-50% on the request → click are normal at this timing. Email runs 5-10%; in-person QR scanning runs lower without explicit prompting. The full timing argument is in the 30-minute rule post.
- Do not gate. Send the request to every completed customer, not a curated subset. Selectively soliciting positive reviews became an FTC enforcement target in October 2024, with civil penalties up to $53,088 per violation. The compliant pattern is to give every customer the public option and offer a private feedback channel as an alternative.
- Do not hardcode the link in 14 places. Centralize it in one tool that handles the routing logic. When Google changes their URL format (they have, twice, in the last five years), you do not want to be hunting through QR codes printed three years ago.
If you are building the request flow from scratch, the Google Business Profile reference page covers the underlying concepts, and the SignalRoute tools index has the QR generator that pairs naturally with the review-link tool. The combined flow — generate the link, wrap it in a routing page, drop it into a QR code or SMS — takes about ten minutes from cold start.
If your existing review tool is making this harder than the three steps above, that is a signal worth acting on.