Green River Mix
Ancilla centum apostolus attonbitus carcer ante confero veritas.
Overview
playlists / #151
Ancilla centum apostolus attonbitus carcer ante confero veritas.
Green River Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/151" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/151" ); const playlist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/playlists.d.ts https://example-data.com/types/playlists.d.ts
import type { Playlist } from "./types/playlists";
const res = await fetch(
"https://example-data.com/api/v1/playlists/151"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/151"
)
playlist = res.json() Response
{
"id": 151,
"userId": 158,
"name": "Green River Mix",
"slug": "green-river-mix-151",
"description": "Ancilla centum apostolus attonbitus carcer ante confero veritas.",
"songIds": [
2690,
2627,
617,
866,
1917,
28,
2219,
839,
2930,
304,
851,
919,
2391,
2339,
1907,
453,
566,
1514,
1719,
1468,
991,
631,
2572,
461,
2395,
777
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-151/500/500",
"createdAt": "2024-12-09T03:46:26.036Z",
"updatedAt": "2025-01-03T22:53:30.277Z"
}