I Want to Hold Your Hand Mix
Teres audacia sol neque stipes accusator cuppedia.
Overview
playlists / #101
Teres audacia sol neque stipes accusator cuppedia.
I Want to Hold Your Hand Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/101" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/101" ); 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/101"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/101"
)
playlist = res.json() Response
{
"id": 101,
"userId": 14,
"name": "I Want to Hold Your Hand Mix",
"slug": "i-want-to-hold-your-hand-mix-101",
"description": "Teres audacia sol neque stipes accusator cuppedia.",
"songIds": [
2664,
1430,
610,
2596,
2583,
1152,
1290,
678,
479,
2960,
902,
687,
2007,
83,
2630,
2779,
1787,
911,
524,
1819,
474,
527,
263,
2516,
1603,
617
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-101/500/500",
"createdAt": "2025-07-26T03:49:00.133Z",
"updatedAt": "2025-08-18T01:47:31.259Z"
}