Physical Mix
Harum capillus patria fugiat depono aperio.
Overview
playlists / #150
Harum capillus patria fugiat depono aperio.
Physical Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/150" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/150" ); 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/150"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/150"
)
playlist = res.json() Response
{
"id": 150,
"userId": 70,
"name": "Physical Mix",
"slug": "physical-mix-150",
"description": "Harum capillus patria fugiat depono aperio.",
"songIds": [
2410,
2336,
797,
1501,
423,
2687,
652,
602,
1545,
47,
2413,
1276,
703,
289,
2289,
717,
2473,
1329,
738,
1225,
2954,
253,
1111,
2199,
218,
1628,
2595,
101,
2931
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-150/500/500",
"createdAt": "2024-12-25T18:40:16.306Z",
"updatedAt": "2025-01-11T06:16:29.865Z"
}