More Than Words Mix
Aegre vomer arcus sublime cetera calamitas.
playlists / #48
Aegre vomer arcus sublime cetera calamitas.
More Than Words Mix
curl -sS \
"https://example-data.com/api/v1/playlists/48" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/48"
);
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/48"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/48"
)
playlist = res.json() {
"id": 48,
"userId": 196,
"name": "More Than Words Mix",
"slug": "more-than-words-mix-48",
"description": "Aegre vomer arcus sublime cetera calamitas.",
"songIds": [
1750,
1988,
1463,
1457,
2092,
1915,
1507,
2971,
2278,
2261,
1501,
2895,
1031,
463,
379,
644,
2241,
598,
2274,
2544,
1330,
847,
1649,
743,
504,
2731,
254,
2352,
17,
2493,
693,
2440,
2294
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-48/500/500",
"createdAt": "2026-03-19T14:41:42.615Z",
"updatedAt": "2026-03-27T12:28:18.821Z"
}