# Single Review

Fetch a specific review by its review ID, including full review text, rating, photos, and owner response.

- **Documentation:** [https://scrappa.co/docs/google-maps-api/google_single_review](https://scrappa.co/docs/google-maps-api/google_single_review)
- **API group:** Google Maps API
- **Endpoint:** `GET https://scrappa.co/api/maps/review`

## 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 |
| --- | --- | --- | --- |
| `review_id` | string | Yes | The Google review ID. |
| `business_id` | string | Yes | The Google business ID. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/maps/review?review_id=ChZDSUhNMG9nS0VJQ0FnSUNiczl6WE1REAE&business_id=0x60188b88b7d8f7ab%3A0x2133080e9923eaac"
```

## Example response

```json
{
    "review": {
        "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiczl6WE1REAE",
        "review_text": [
            "Great place with excellent service!"
        ],
        "rating": 5,
        "timestamp": 1704067200,
        "review_link": "https://www.google.com/maps/reviews/data=!4m8!14m7!1m6!2m5!1sChZDSUhNMG9nS0VJQ0FnSUNiczl6WE1REAE",
        "review_likes": 12,
        "author_id": "123456789012345678901",
        "author_link": "https://www.google.com/maps/contrib/123456789012345678901?hl=en",
        "author_name": "John Doe",
        "author_profile_photo": "https://lh3.googleusercontent.com/a-/example_photo.jpg",
        "author_review_count": 45,
        "author_reviews_link": "https://www.google.com/maps/contrib/123456789012345678901/reviews",
        "author_local_guide_level": 3,
        "owner_response_timestamp": null,
        "owner_response_text": null,
        "owner_response_language": null,
        "review_language": [
            "en"
        ],
        "review_form": [],
        "images": []
    },
    "business_info": null,
    "error": null
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 422 | Validation Error | The review_id or business_id parameter failed validation before the single review lookup ran. |
| 404 | Review Not Found | Google Maps did not return the requested review for the supplied review_id and business_id pair. |

## 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)
