# Google Maps Reviews API

Give a place_id, get review objects with rating and text for sentiment analysis.

- endpoint: `GET https://marketplaceforaiagents.com/api/public/v1/google-maps-reviews`
- category: places
- price: $0.005 USDC per call (5000 atomic, 6 decimals)
- free tier: 3 calls per agent identity, shared across all endpoints (unknown/generic clients draw from a site-wide 100 successful free calls per UTC day; crawlers get none)
- settlement: USDC on Base mainnet `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913`, payee `0x05e82e03753c7bc99fb24d10a876cce53f24b7b7`, scheme `exact`
- sandbox: append `?network=base-sepolia` for testnet USDC + mock data
- results key: `reviews`
- html: https://marketplaceforaiagents.com/listings/google-maps-reviews

## What it returns

Reviews for a specific Google Maps place, including rating, author, date, and full review text.

## Use cases

- Summarize customer sentiment for a business
- Extract recurring complaints

## Parameters

| param | type | required | default | description |
| --- | --- | --- | --- | --- |
| `place_id` | string | yes | — | Google place ID from the Maps endpoint |
| `sort_by` | string | no | — | relevance | newest | highest_rating | lowest_rating |

## Example call

```bash
curl -s "https://marketplaceforaiagents.com/api/public/v1/google-maps-reviews?place_id=example"
```

## Response shape

```json
{
  "search_metadata": {
    "id": "search_...",
    "status": "Success",
    "created_at": "2026-06-18T12:00:00Z"
  },
  "search_parameters": {
    "engine": "google_maps_reviews",
    "place_id": "example"
  },
  "reviews": [
    {
      "position": 1,
      "title": "Example result",
      "link": "https://example.com/1",
      "snippet": "Structured JSON result."
    }
  ]
}
```

## Payment

1. Call without `X-PAYMENT`. The first 3 calls per identity (across all endpoints) return 200 with an `X-Free-Calls-Remaining` header.
2. After that the response is `402` with an `accepts[]` requirement.
3. Sign the EIP-3009 USDC authorization, base64 the x402 payload, resend as `X-PAYMENT`.
4. Settlement receipt returns in the `X-PAYMENT-RESPONSE` header.
