Best of My Love Mix
Uterque provident aperte cuppedia casso vix consectetur templum aliqua adulescens tactus quis.
Overview
playlists / #56
Uterque provident aperte cuppedia casso vix consectetur templum aliqua adulescens tactus quis.
Best of My Love Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/56" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/56" ); const playlist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/playlists.d.ts https://example-data.com/types/playlists.d.ts
import type { Playlist } from "./types/playlists";
const res = await fetch(
"https://example-data.com/api/v1/playlists/56"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/56"
)
playlist = res.json() Response
{
"id": 56,
"userId": 206,
"name": "Best of My Love Mix",
"slug": "best-of-my-love-mix-56",
"description": "Uterque provident aperte cuppedia casso vix consectetur templum aliqua adulescens tactus quis.",
"songIds": [
2580,
2036,
1486,
1561,
43,
1708,
605,
2691,
1298,
1558,
919,
1403,
1794,
2606,
107,
138,
1858,
356,
1041,
1539,
1477,
2006,
1725,
754,
1460,
2888,
714,
493,
1967,
1758,
2277,
1684,
1193,
1507,
1515,
1187,
912,
1357,
2222,
2758,
2340,
2096,
1303,
584
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-56/500/500",
"createdAt": "2024-06-11T16:01:11.738Z",
"updatedAt": "2024-07-06T17:27:24.118Z"
}