Get YouTube Shorts Chart
Return the YouTube Shorts chart for chartType (shorts_daily / shorts_weekly) and code2. Uses the CCC cm_chart_cache_v2 pipeline (Charts.getChartsFromCH with platform: "youtube", chartEntity: "track") and returns a bare array under obj.
Path Parameters
- Type: string enumchart
Type requiredYouTube Shorts chart type (
shorts_dailyorshorts_weekly).values- shorts
_daily - shorts
_weekly
Query Parameters
- code2required
ISO 3166-1 alpha-2 country code (uppercase, e.g. 'US') or the literal 'GLOBAL' for cross-country charts.
- Type: stringmin length:2max length:2
ISO 3166-1 alpha-2 country code (2 letters, e.g. 'US', 'BR', 'GB').
- Type: string Format: date-timedate
Date for the time-slice (YYYY-MM-DD). Required unless
latest=true. - Type: booleanlatest
If true, use the most recently available date and ignore
date. - Type: integerlimitmin:1max:1000
Maximum number of items to return per request.
- Type: integeroffsetmin:0
Number of items to skip from the start of the result set; pair with
limitto paginate.
Responses
- application/json
Request Example for get/api/charts/youtube/shorts/{chartType}
curl 'https://api.chartmetric.com/api/charts/youtube/shorts/shorts_daily?code2=' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"obj": [
{
"entityId": 27599255,
"targetId": "uLHqpjW3aDs",
"name": "Roddy Ricch - The Box [Official Audio]",
"rank": 1,
"chartedDate": "2026-02-06",
"country": "US",
"imageUrl": null,
"rankDiff": 0,
"artists": [
{
"id": 839964,
"name": "Roddy Ricch",
"code2": "US",
"imageUrl": null,
"careerStage": "mainstream"
}
],
"album": {
"id": null,
"name": "The Box",
"label": null,
"releaseDate": null
},
"isrc": "USAT21906978",
"externalId": "uLHqpjW3aDs",
"targetExtras": {
"youtubeViews": 20500000
},
"genre": "hip-hop/rap",
"isChartGenre": false
}
]
}