Moonlight Cocktail Mix
Color quisquam supellex amplitudo abundans suus.
Overview
playlists / #54
Color quisquam supellex amplitudo abundans suus.
Moonlight Cocktail Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/54" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/54" ); 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/54"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/54"
)
playlist = res.json() Response
{
"id": 54,
"userId": 159,
"name": "Moonlight Cocktail Mix",
"slug": "moonlight-cocktail-mix-54",
"description": "Color quisquam supellex amplitudo abundans suus.",
"songIds": [
2951,
1299,
2195,
1923,
2260,
2608,
1807,
1433,
1653,
829,
1904,
1712,
585,
997,
360,
532,
2045,
163,
612,
2925,
934,
634,
1703,
2385,
2305,
842,
957
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-54/500/500",
"createdAt": "2024-07-06T18:32:42.870Z",
"updatedAt": "2024-07-22T11:55:26.552Z"
}