## google_play/locations

`GET /v1/google_play/locations`

The list of Google Play store locations.

*Google Play locations*

| Parameter | Required | Description |
| --- | --- | --- |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** free — 0 credits.

```bash
curl "https://www.monocrawl.com/v1/google_play/locations" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "_warnings": [
    "example"
  ],
  "count": 0,
  "cursor": null,
  "has_more": false,
  "items": [
    {
      "code": 0,
      "country_code": "example",
      "name": "example",
      "type": "example"
    }
  ],
  "total": 0
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/google_play/locations#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/google_play/locations.json)
