Playlist
List Playlists
GET
https://api.idol.io/api/v2/playlists
Headers
Name
Type
Description
Authorization*
string
Bearer <token>
Content-Type*
string
application/vnd.api+json
{
"data": [
{
"id": "<ID>",
"type": "playlists",
"links": {
"self": "https://api.idol.io/api/v2/playlists/<ID>"
},
"attributes": {
"created-at": "2020-08-04T13:14:28.205+02:00",
"updated-at": "2021-04-21T00:03:28.135+02:00",
"name": "Christmas Crooners"
}
},
{
"id": "<ID>",
"type": "playlists",
"links": {
"self": "https://api.idol.io/api/v2/playlists/<ID>"
},
"attributes": {
"created-at": "2022-08-04T19:36:23.268+02:00",
"updated-at": "2023-04-21T00:03:28.266+02:00",
"name": "Reggae en Español"
}
},
{
"id": "<ID>",
"type": "playlists",
"links": {
"self": "https://api.idol.io/api/v2/playlists/<ID>"
},
"attributes": {
"created-at": "2020-08-04T19:36:23.596+02:00",
"updated-at": "2021-04-21T00:03:29.360+02:00",
"name": "Coder Tracks - Keep your brain focused"
}
}
],
"meta": {
"record-count": 5316455,
"page-count": 1772152
},
"links": {
"first": "https://api.idol.io/api/v2/playlists?page%5Bnumber%5D=1&page%5Bsize%5D=3",
"next": "https://api.idol.io/api/v2/playlists?page%5Bnumber%5D=2&page%5Bsize%5D=3",
"last": "https://api.idol.io/api/v2/playlists?page%5Bnumber%5D=1772152&page%5Bsize%5D=3"
}
}
Get Playlist
GET
https://api.idol.io/api/v2/playlists/:id
Path Parameters
Name
Type
Description
id*
number
ID of the Playlist
Headers
Name
Type
Description
Authorization*
string
Bearer <token>
Content-Type*
string
application/vnd.api+json
{
"data": {
"id": "<ID>",
"type": "playlists",
"links": {
"self": "https://api.idol.io/api/v2/playlists/<ID>"
},
"attributes": {
"created-at": "2021-08-04T13:14:28.205+02:00",
"updated-at": "2022-04-21T00:03:28.135+02:00",
"name": "Christmas Crooners"
}
}
}
Last updated