At the Hop Mix
Teneo depereo absorbeo corrupti aedificium bonus.
playlists / #58
Teneo depereo absorbeo corrupti aedificium bonus.
At the Hop Mix
curl -sS \
"https://example-data.com/api/v1/playlists/58" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/58"
);
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/58"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/58"
)
playlist = res.json() {
"id": 58,
"userId": 152,
"name": "At the Hop Mix",
"slug": "at-the-hop-mix-58",
"description": "Teneo depereo absorbeo corrupti aedificium bonus.",
"songIds": [
25,
502,
2507,
1402,
1823,
718,
2482,
1110,
2366,
1753,
2807,
2062,
2501,
2114,
659,
1497,
471,
172,
2646,
80,
635,
2925,
2469,
1541,
325,
2609,
986,
1575,
1699,
1247
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-58/500/500",
"createdAt": "2024-09-06T20:41:00.375Z",
"updatedAt": "2024-09-23T20:51:27.540Z"
}