Get Apple Music Video Charts

Return music videos charting on Apple Music for a given date. Shape mirrors the Apple Music track chart but entries reference video IDs. Many legacy fields overlap with the track endpoint.

Query Parameters
  • genre
    Type: string

    Apple Music music-video chart genre filter.

  • country_code
    Type: string
    min length:  
    2
    max length:  
    2
    required

    ISO 3166-1 alpha-2 country code (2 letters, e.g. 'US', 'BR', 'GB').

  • date
    Type: string Format: date-time

    Date for the time-slice (YYYY-MM-DD). Required unless latest=true.

  • offset
    Type: integer
    min:  
    0

    Number of items to skip from the start of the result set; pair with limit to paginate.

  • latest
    Type: boolean

    If true, use the most recently available date and ignore date.

Responses
  • application/json
Request Example for get/api/charts/applemusic/videos
curl 'https://api.chartmetric.com/api/charts/applemusic/videos?country_code=' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "obj": {
    "length": 1,
    "data": [
      {
        "id": 987654,
        "name": "Blinding Lights (Official Music Video)",
        "isrc": "USUG11904206",
        "image_url": "https://is5-ssl.mzstatic.com/image/thumb/Music124/v4/video.jpeg",
        "cm_track": 22233344,
        "itunes": 1487050828,
        "rank": 2,
        "pre_rank": 3,
        "peak_rank": 1,
        "peak_date": "2020-05-01T00:00:00.000Z",
        "added_at": "2024-05-01T00:00:00.000Z",
        "chart_type": "videos",
        "chart_name": "Top Music Videos",
        "code2": "US",
        "country": "United States",
        "velocity": 0.02,
        "time_on_chart": "120 days",
        "rankStats": [
          {
            "rank": 2,
            "timestp": "2024-05-01T00:00:00.000Z"
          }
        ],
        "artist_names": [
          "The Weeknd"
        ],
        "cm_artist": [
          4315
        ]
      }
    ]
  }
}