The Girl From Ipanema Mix
Creo capto ventosus hic adeo tempore volva civis aduro ea dignissimos.
Overview
playlists / #64
Creo capto ventosus hic adeo tempore volva civis aduro ea dignissimos.
The Girl From Ipanema Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/64" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/64" ); 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/64"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/64"
)
playlist = res.json() Response
{
"id": 64,
"userId": 59,
"name": "The Girl From Ipanema Mix",
"slug": "the-girl-from-ipanema-mix-64",
"description": "Creo capto ventosus hic adeo tempore volva civis aduro ea dignissimos.",
"songIds": [
589,
2965,
1790,
1582,
1563,
1516,
2094,
1048,
1999,
426,
75,
1812,
2866,
1038,
2041,
298,
1604,
2019,
1650,
1010,
52,
2313,
2860,
2118,
916,
901,
1442,
477,
889
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-64/500/500",
"createdAt": "2025-10-30T07:37:20.231Z",
"updatedAt": "2025-11-13T03:08:33.027Z"
}