Dardanella Mix
Crudelis titulus amitto spoliatio thorax.
playlists / #52
Crudelis titulus amitto spoliatio thorax.
Dardanella Mix
curl -sS \
"https://example-data.com/api/v1/playlists/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/52"
);
const playlist = await res.json();import type { Playlist } from "https://example-data.com/types/playlists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/playlists/52"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/52"
)
playlist = res.json() {
"id": 52,
"userId": 13,
"name": "Dardanella Mix",
"slug": "dardanella-mix-52",
"description": "Crudelis titulus amitto spoliatio thorax.",
"songIds": [
1265,
679,
1552,
2426,
1508,
1781,
549,
2279,
2284,
2239,
374,
775,
2659,
1081,
1213,
1425,
1504,
1463,
1338
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-52/500/500",
"createdAt": "2024-08-17T09:39:18.617Z",
"updatedAt": "2024-08-31T00:15:05.010Z"
}