Get Weekly Top Albums
Request
GET /charts/v1/weekly/albums
Parameter
HEADER PARAMETER | VALUE |
---|---|
Content-Type | Required Set to application/json |
Accept-Language | Such as zh-CN,en-US... default en |
app_id | Required The app ID provided to you by Boomplay when you register your application. |
Authorization | Required Access Token |
Responses Body
Body
code (integer) required
desc (string)
data (object)An array of albums in weekly top albums.
date_updated (string) The data when the charts are updated.
albums (array of object) the array of albums.album_id (integer) Boomplay ID for the album
album_title (string) The name of the album
upc (string) The upc of the album
album_rank (integer) The rank of the album
available_markets (string) The markets in which weekly top albums are available.
Request Sample
GET /charts/v1/weekly/albums HTTP/1.1
Authorization: ${authorization}
app_id: ${app_id}
Host: openapi.boomplay.com
Response Example
{
"desc": null,
"code": 0,
"data": {
"date_updated": "2022-11-24",
"albums": [
{
"album_id": 10039,
"album_title": "L.I.F.E (Leaving An Impact For Eternity)",
"upc": "20230427145700",
"album_rank": "15",
"available_markets": "BB,TT,SV,JM,KN,AG,HN,DM,DO,HT,GT,VC,CR,BS,PA,CU,LC,BZ,NI,GD,CA"
},
{
"album_id": 10039,
"album_title": "L.I.F.E (Leaving An Impact For Eternity)",
"upc": "20230427145700",
"album_rank": "18",
"available_markets": "GB"
}
]
}
}