# Apple App Store Top Free Apps Scraper

**Use case:** 

Scrape Apple App Store top free app rankings by country with app IDs, ranks, genres, ratings, and URLs.

## Input

```json
{
  "countries": [
    "us",
    "gb"
  ],
  "charts": [
    "top-free"
  ],
  "maxItems": 100,
  "includeDetails": true,
  "searchTerms": [
    "fitness tracker"
  ],
  "searchLimit": 10
}
```

## Output

```json
{
  "country": {
    "label": "Country"
  },
  "chart": {
    "label": "Chart"
  },
  "rank": {
    "label": "Rank"
  },
  "appId": {
    "label": "App ID"
  },
  "name": {
    "label": "App name"
  },
  "developerName": {
    "label": "Developer"
  },
  "bundleId": {
    "label": "Bundle ID"
  },
  "genre": {
    "label": "Genre"
  },
  "price": {
    "label": "Price"
  },
  "currency": {
    "label": "Currency"
  },
  "rating": {
    "label": "Rating"
  },
  "ratingCount": {
    "label": "Ratings"
  },
  "version": {
    "label": "Version"
  },
  "releaseDate": {
    "label": "Release date"
  },
  "updatedAt": {
    "label": "Updated"
  },
  "appStoreUrl": {
    "label": "App Store URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "searchTerm": {
    "label": "Search term"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Apple App Store Top Charts & Rankings Scraper](https://apify.com/automation-lab/apple-app-store-top-charts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/apple-app-store-top-charts-scraper) to learn more, explore other use cases, and run it yourself.