Tears in Heaven Mix
Inventore beatus stultus paulatim vapulus aspicio avaritia repellendus odio torqueo temptatio numquam tres.
Overview
playlists / #141
Inventore beatus stultus paulatim vapulus aspicio avaritia repellendus odio torqueo temptatio numquam tres.
Tears in Heaven Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/141" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/141" ); 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/141"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/141"
)
playlist = res.json() Response
{
"id": 141,
"userId": 96,
"name": "Tears in Heaven Mix",
"slug": "tears-in-heaven-mix-141",
"description": "Inventore beatus stultus paulatim vapulus aspicio avaritia repellendus odio torqueo temptatio numquam tres.",
"songIds": [
973,
2505,
314,
419,
283,
2963,
1707,
2794,
1544,
746
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-141/500/500",
"createdAt": "2025-01-09T08:36:15.398Z",
"updatedAt": "2025-01-22T22:36:24.438Z"
}