It's All in the Game Mix
Unus aestivus tollo bellum strues crudelis iste ventus asporto cruentus cohors concido tenuis vesper caput.
playlists / #65
Unus aestivus tollo bellum strues crudelis iste ventus asporto cruentus cohors concido tenuis vesper caput.
It's All in the Game Mix
curl -sS \
"https://example-data.com/api/v1/playlists/65" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/65"
);
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/65"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/65"
)
playlist = res.json() {
"id": 65,
"userId": 70,
"name": "It's All in the Game Mix",
"slug": "its-all-in-the-game-mix-65",
"description": "Unus aestivus tollo bellum strues crudelis iste ventus asporto cruentus cohors concido tenuis vesper caput.",
"songIds": [
1173,
778,
2121,
888,
2030,
1223,
208,
910,
734,
1089,
750,
1414,
1224,
426,
1279,
2313,
1141,
1651
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-65/500/500",
"createdAt": "2026-03-03T03:43:42.305Z",
"updatedAt": "2026-03-27T17:37:24.125Z"
}