Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET 'https://api.hustmusik.live/v1/user/me/history'
Responses
application/json {
"data": [
{
"last_listened": "2024-11-03T08:21:44.432759+00:00",
"songs": {
"id": "62f73752-f9c0-4611-853d-b10ed4434515",
"title": "Fearless (Taylor’s Version)",
"artists": [
{
"artist": {
"id": "5ea2b239-9ba9-4251-b110-343978aa30e9",
"name": "Taylor Swift"
}
}
],
"duration": 107,
"thumbnailurl": null
}
},
{
"last_listened": "2024-11-03T08:21:53.070579+00:00",
"songs": {
"id": "418d1f7f-09a4-4f06-8912-ae061b11a070",
"title": "Breathe (Taylor’s Version)",
"artists": [],
"duration": null,
"thumbnailurl": null
}
}
]
}
Modified at 2024-11-03 14:03:17