## app_store/app-list

`GET /v1/app_store/app-list`

Apple Marketing Tools top-free / top-paid app chart for a storefront, ranked.

*App Store top charts*

| Parameter | Required | Description |
| --- | --- | --- |
| `app_collection` | yes | top-free or top-paid (aliases topfreeapplications / toppaidapplications accepted) — e.g. `top-free` |
| `app_category` | no | Not supported by the Apple charts feed; acknowledged in _warnings and ignored — e.g. `6014` |
| `country` | no | 2-letter storefront country code (default us) — e.g. `us` |
| `language` | no | Not supported by the charts feed; acknowledged in _warnings and ignored — e.g. `en_us` |
| `depth` | no | Requested results, 1–100 (default 100); the source may return fewer. No per-item detail enrichment. — e.g. `100` |
| `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:** 2 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/app_store/app-list?app_collection=top-free" \
  -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": [],
  "collection": "example",
  "count": 0,
  "country": "example",
  "items": [
    {
      "developer": {
        "name": "example"
      },
      "genres": [
        {}
      ],
      "icon_url": "https://example.com/example",
      "id": "example",
      "name": "example",
      "rank": 0,
      "release_date": "2026-09-01T12:00:00Z",
      "url": "https://example.com/example"
    }
  ],
  "updated_at": "2026-09-01T12:00:00Z"
}
```

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