I Feel For You Mix
Carcer colligo comburo umerus incidunt.
playlists / #2
Carcer colligo comburo umerus incidunt.
I Feel For You Mix
curl -sS \
"https://example-data.com/api/v1/playlists/2" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/playlists/2"
);
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/2"
);
const playlist = (await res.json()) as Playlist;import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/2"
)
playlist = res.json() {
"id": 2,
"userId": 97,
"name": "I Feel For You Mix",
"slug": "i-feel-for-you-mix-2",
"description": "Carcer colligo comburo umerus incidunt.",
"songIds": [
1584,
2936,
1118,
1001,
1915,
877,
2734,
1895,
466,
1536,
2691,
254,
429,
650,
1361,
1862,
1333,
103,
2617,
2730,
54
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-2/500/500",
"createdAt": "2025-02-01T18:26:05.281Z",
"updatedAt": "2025-02-09T08:18:05.547Z"
}