That Old Black Magic Mix
Taceo cado velociter crinis utor conculco.
Overview
playlists / #131
Taceo cado velociter crinis utor conculco.
That Old Black Magic Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/131" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/131" ); 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/131"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/131"
)
playlist = res.json() Response
{
"id": 131,
"userId": 45,
"name": "That Old Black Magic Mix",
"slug": "that-old-black-magic-mix-131",
"description": "Taceo cado velociter crinis utor conculco.",
"songIds": [
1590,
947,
2723,
868,
1700,
2433,
1502,
2685,
1570,
305,
2280,
888,
1628,
350,
512,
774,
1693,
2515,
2247,
1503,
1806,
1172,
2523,
275,
2862,
1716,
1690,
73,
1577
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-131/500/500",
"createdAt": "2024-10-02T07:30:08.702Z",
"updatedAt": "2024-10-19T07:59:36.443Z"
}