# Scrape the global Shazam Top 200

**Use case:** 

Collect a normalized snapshot of globally ranked Shazam tracks with rank, artists, song IDs, links, and artwork for music intelligence workflows.

## Input

```json
{
  "chartType": "top-200",
  "countries": [
    "world"
  ],
  "startUrls": [],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "trackTitle": {
    "label": "Track",
    "format": "string"
  },
  "artists": {
    "label": "Artists",
    "format": "array"
  },
  "chartType": {
    "label": "Chart type",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "songId": {
    "label": "Song ID",
    "format": "string"
  },
  "songUrl": {
    "label": "Shazam song",
    "format": "string"
  },
  "artworkUrl": {
    "label": "Artwork",
    "format": "string"
  },
  "sourceChartUrl": {
    "label": "Source chart",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Shazam Charts Scraper](https://apify.com/automation-lab/shazam-charts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/shazam-charts-scraper) to learn more, explore other use cases, and run it yourself.