Fallin' Mix
Degero tyrannus super vapulus demo vir temeritas totidem adeo voluptas coerceo succurro temporibus vos.
playlists / #100
Degero tyrannus super vapulus demo vir temeritas totidem adeo voluptas coerceo succurro temporibus vos.
Fallin' Mix
curl -sS \
"https://example-data.com/api/v1/playlists/100" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/100"
);
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/100"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/100"
)
playlist = res.json() {
"id": 100,
"userId": 166,
"name": "Fallin' Mix",
"slug": "fallin-mix-100",
"description": "Degero tyrannus super vapulus demo vir temeritas totidem adeo voluptas coerceo succurro temporibus vos.",
"songIds": [
2134,
2400,
846,
699,
182,
1721,
1280,
2621,
636,
1816,
2842,
62,
543,
2406,
2022,
857,
2590,
221,
2056,
186,
1188,
729,
1594,
1832
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-100/500/500",
"createdAt": "2024-07-22T12:28:06.679Z",
"updatedAt": "2024-07-29T15:02:10.089Z"
}