Kryptonite Mix
Modi adeptio ullus tremo ustilo inflammatio tempora curiositas aperte cohaero.
Overview
playlists / #76
Modi adeptio ullus tremo ustilo inflammatio tempora curiositas aperte cohaero.
Kryptonite Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/76" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/76" ); 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/76"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/76"
)
playlist = res.json() Response
{
"id": 76,
"userId": 159,
"name": "Kryptonite Mix",
"slug": "kryptonite-mix-76",
"description": "Modi adeptio ullus tremo ustilo inflammatio tempora curiositas aperte cohaero.",
"songIds": [
405,
1427,
729,
2795,
600,
773,
1024,
1222,
239,
1701,
346,
1235,
2403,
1229,
2822,
1512,
864,
1955,
2233,
2041,
516,
1762,
685,
2707,
178,
765,
329,
1437,
2784,
2511,
1009,
347,
714
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-76/500/500",
"createdAt": "2026-05-02T19:57:59.193Z",
"updatedAt": "2026-05-07T15:04:33.978Z"
}