# Scrape the top songs chart on Apple Music

**Use case:** 

Extract the top songs chart from Apple Music in the US. Structured catalog data with titles and artists. Pay per result.

## Input

```json
{
  "searchQuery": "",
  "entityTypes": [
    "album",
    "song"
  ],
  "browseCharts": "songs",
  "country": "US",
  "countries": [],
  "allCountries": false,
  "maxResults": 10,
  "searchLanguage": "",
  "appleIds": [],
  "startUrls": [],
  "includeTracklist": false,
  "expandArtistAlbums": false,
  "filterTypes": [],
  "explicitFilter": "all",
  "genres": [],
  "releasedAfter": "",
  "releasedBefore": "",
  "streamableOnly": false,
  "includeMedia": true,
  "useProxy": false
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "artistName": {
    "label": "Artist",
    "format": "text"
  },
  "primaryGenre": {
    "label": "Genre",
    "format": "text"
  },
  "lowestPrice": {
    "label": "Lowest",
    "format": "number"
  },
  "countriesPriced": {
    "label": "Countries",
    "format": "number"
  },
  "appleMusicUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Apple Music Scraper](https://apify.com/unfenced-group/apple-music-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/apple-music-scraper) to learn more, explore other use cases, and run it yourself.