## content_analysis/locations

`GET /v1/content_analysis/locations`

Reference list of the ISO-3166 alpha-2 country codes content analysis can genuinely filter on — publisher country for news, storefront for rating-distribution. Static, costs no credits.

*Content Analysis 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/content_analysis/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,
  "items": [
    {
      "code": "example",
      "filterable_via": [
        "example"
      ],
      "name": "example",
      "note": "example"
    }
  ]
}
```

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