# Google Play Reviews

Extract Google Play reviews, including reviewer name, rating, publish date, and full text

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

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

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

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `inputs` | string | Yes | A Google Play app URL or package ID (e.g. org.telegram.messenger) to scrape reviews from. |
| `maxResults` | integer | No | Number of reviews to return. Use 0 for all. |
| `country` | string | No | Country's Google Play store to pull reviews from. |
| `language` | string | No | Language to pull reviews in. |
| `sortBy` | string | No | Sort order for reviews. |

## Example

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

```python
import requests

resp = requests.post(
    "https://api.mindcase.co/api/v1/agents/google/play/reviews/run",
    headers={"Authorization": "Bearer mk_live_YOUR_API_KEY"},
    json={"params": {
    "inputs": "..."
}},
)
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, endpoints): https://mindcase.co/skills.md

## Response columns

| Field | Display name | Type |
|-------|--------------|------|
| `reviewer` | Reviewer | text |
| `rating` | Rating | rating |
| `reviewText` | Review Text | text |
| `posted` | Posted | text |
| `appVersion` | App Version | text |
| `helpfulVotes` | Helpful Votes | number |
| `appId` | App ID | text |
| `appUrl` | App URL | url |
| `reviewUrl` | Review URL | url |
| `country` | Country | text |
| `language` | Language | text |
| `developerReply` | Developer Reply | text |
| `replyDate` | Reply Date | text |
| `reviewerPhoto` | Reviewer Photo | url |
| `subratings` | Subratings | object_array |
