Wichita Lineman Mix
Patruus caelum terga cetera ut campana adeptio.
Overview
playlists / #191
Patruus caelum terga cetera ut campana adeptio.
Wichita Lineman Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/191" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/191" ); 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/191"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/191"
)
playlist = res.json() Response
{
"id": 191,
"userId": 223,
"name": "Wichita Lineman Mix",
"slug": "wichita-lineman-mix-191",
"description": "Patruus caelum terga cetera ut campana adeptio.",
"songIds": [
1870,
1535,
2543,
876,
2474,
292,
1873,
2744,
798,
2471,
1430,
2317,
2483,
1090,
2591,
652,
1333,
2673,
1585,
365
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-191/500/500",
"createdAt": "2025-12-15T23:15:52.537Z",
"updatedAt": "2025-12-28T11:52:44.091Z"
}