# Semrush Google Review Link & QR

Generates the direct Google "write a review" link plus a shortened URL for a business. The place_id is the Google place id of the business — the Scrappa Google Maps endpoints return it in their business payloads.

- **Documentation:** [https://scrappa.co/docs/semrush-api/semrush_local_review_qr](https://scrappa.co/docs/semrush-api/semrush_local_review_qr)
- **API group:** Semrush API
- **Endpoint:** `POST https://scrappa.co/api/semrush/local/review-qr`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `business_name` | string | Yes | Display name of the business. |
| `place_id` | string | Yes | Google place id of the business (e.g. ChIJN1t_tDeuEmsRUsoyG83frY4). |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/semrush/local/review-qr?business_name=Blue+Bottle+Coffee&place_id=ChIJN1t_tDeuEmsRUsoyG83frY4"
```

## Example response

```json
{
    "search_parameters": {
        "engine": "semrush_local_review_qr",
        "business_name": "Blue Bottle Coffee",
        "place_id": "ChIJN1t_tDeuEmsRUsoyG83frY4"
    },
    "request_id": "d2f8c1a0-1234-4abc-9def-0123456789ab",
    "review_link": "https://search.google.com/local/writereview?placeid=ChIJN1t_tDeuEmsRUsoyG83frY4",
    "review_short_link": "https://bit.ly/3AbCdEf"
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 422 | Validation Error | A parameter failed validation. |
| 503 | Semrush Upstream Unavailable | Semrush could not be fetched through the configured proxy pool after the full attempt budget. Never charged. |

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
