Beatport Charts
Beatport track charts (weekly). Handler runs QUERY_GET_BEATPORT_CHARTS keyed by ISRC, merges cross-platform track metadata, and attaches historical rankStats from QUERY_GET_TRACK_RANKINGS.BEATPORT.
Query Parameters
- Type: stringgenrerequired
Beatport genre filter. Use
/api/charts/genres/beatportto retrieve the available genre names. - Type: string Format: date-timedate
Date for the time-slice (YYYY-MM-DD). Required unless
latest=true. - Type: integeroffsetmin:0
Number of items to skip from the start of the result set; pair with
limitto paginate. - Type: booleanlatest
If true, use the most recently available date and ignore
date.
Responses
- application/json
Request Example for get/api/charts/beatport
curl 'https://api.chartmetric.com/api/charts/beatport?genre=' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"obj": {
"length": null,
"data": [
{
"id": 0,
"name": null,
"isrc": null,
"image_url": null,
"description": null,
"tags": null,
"cm_track": null,
"cm_artist": [
null
],
"artist_names": [
null
],
"code2s": [
null
],
"artist_images": [
null
],
"artist_covers": [
null
],
"spotify_track_ids": [
null
],
"spotify_album_ids": [
null
],
"spotify_duration_ms": null,
"itunes_track_ids": [
null
],
"itunes_album_ids": [
null
],
"itunes_artist_ids": [
1
],
"itunes_artist_names": [
null
],
"storefronts": [
null
],
"deezer_track_ids": [
null
],
"deezer_album_ids": [
1
],
"deezer_duration": null,
"amazon_track_ids": [
null
],
"amazon_album_ids": [
null
],
"album_ids": [
0
],
"album_names": [
null
],
"album_upc": [
null
],
"album_label": [
null
],
"release_dates": [
"2026-07-20T17:45:03.540Z"
],
"created_at": "2026-07-20T17:45:03.540Z",
"modified_at": "2026-07-20T17:45:03.540Z",
"rank": null,
"pre_rank": null,
"peak_rank": null,
"peak_date": "2026-07-20T17:45:03.540Z",
"added_at": "2026-07-20T17:45:03.540Z",
"velocity": null,
"time_on_chart": "string",
"genre": null,
"beatport": "string",
"remixers": null,
"bc_label": null,
"track_name": null,
"artist_name": null,
"rankStats": [
{
"rank": null,
"timestp": "2026-07-20T17:45:03.540Z"
}
]
}
]
}
}