# Google Maps Reviews

Extract reviews from Google Maps places — reviewer info, ratings, text, responses — using start URLs and max reviews

**Pricing:** $0.25 / 1k reviews

**Endpoint:** `POST /api/v1/agents/google-maps/reviews/run`

**Auth:** `Authorization: Bearer mk_live_...`

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `urls` | array | Yes | Google Maps place URLs to scrape reviews from. One per line. |
| `maxReviews` | integer | No | Number of reviews to scrape per place. Use 0 for all. |
| `sortBy` | string | No | Sort order for reviews. |

## Example

```bash
curl -X POST https://api.mindcase.co/api/v1/agents/google-maps/reviews/run \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"params":{"urls":["..."]}}'
```

```python
import requests

resp = requests.post(
    "https://api.mindcase.co/api/v1/agents/google-maps/reviews/run",
    headers={"Authorization": "Bearer mk_live_YOUR_API_KEY"},
    json={"params": {
    "urls": [
        "..."
    ]
}},
)
data = resp.json()
```

## Get the results

`run` is async and returns a `job_id`. Poll until `status` is `completed`, then read the rows:

```bash
# 1) check status
curl https://api.mindcase.co/api/v1/jobs/JOB_ID \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"

# 2) when status == completed, fetch the rows
curl https://api.mindcase.co/api/v1/jobs/JOB_ID/results \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"
```

Full API reference (auth, jobs, balance, SDKs, MCP): https://mindcase.co/skills.md

## Response columns

| Field | Display name | Type |
|-------|--------------|------|
| `placeUrl` | Place URL | url |
| `reviewUrl` | Review URL | url |
| `reviewText` | Review Text | text |
| `stars` | Stars | rating |
| `postedAt` | Posted At | text |
| `reviewer` | Reviewer | text |
| `reviewerUrl` | Reviewer URL | url |
| `reviewerPhoto` | Reviewer Photo | url |
| `reviewerTotalReviews` | Reviewer Total Reviews | number |
| `localGuide` | Local Guide | boolean |
| `reviewLikes` | Review Likes | number |
| `originalLanguage` | Original Language | text |
| `translatedLanguage` | Translated Language | text |
| `translatedText` | Translated Text | text |
| `businessName` | Business Name | text |
| `category` | Category | text |
| `allCategories` | All Categories | array |
| `businessRating` | Business Rating | rating |
| `businessReviews` | Business Reviews | number |
| `businessPhoto` | Business Photo | url |
| `latitude` | Latitude | number |
| `longitude` | Longitude | number |
| `country` | Country | text |
| `language` | Language | text |
| `permanentlyClosed` | Permanently Closed | boolean |
| `temporarilyClosed` | Temporarily Closed | boolean |
| `placeId` | Place ID | text |
