Hey There Mix
Nihil confugo crinis thymum coerceo cras correptius triduana deprecator aliqua traho.
Overview
playlists / #25
Nihil confugo crinis thymum coerceo cras correptius triduana deprecator aliqua traho.
Hey There Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/25" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/25" ); 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/25"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/25"
)
playlist = res.json() Response
{
"id": 25,
"userId": 167,
"name": "Hey There Mix",
"slug": "hey-there-mix-25",
"description": "Nihil confugo crinis thymum coerceo cras correptius triduana deprecator aliqua traho.",
"songIds": [
1663,
1596,
515,
944,
1937,
910,
2619,
2062,
322,
1806,
1601,
1461,
2651,
391,
1738,
860,
746,
706,
2520,
2241,
197,
448,
267,
1081
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-25/500/500",
"createdAt": "2026-05-13T07:07:20.157Z",
"updatedAt": "2026-05-15T16:35:52.667Z"
}