Apologize Mix
Uterque aureus pauci temeritas deripio stips accedo bene suscipio assentator caput aperte advoco.
Overview
playlists / #169
Uterque aureus pauci temeritas deripio stips accedo bene suscipio assentator caput aperte advoco.
Apologize Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/169" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/169" ); 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/169"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/169"
)
playlist = res.json() Response
{
"id": 169,
"userId": 208,
"name": "Apologize Mix",
"slug": "apologize-mix-169",
"description": "Uterque aureus pauci temeritas deripio stips accedo bene suscipio assentator caput aperte advoco.",
"songIds": [
186,
2797,
1925,
2170,
222,
256,
1758,
479,
2812,
925,
1328,
1882,
2454,
1634,
766,
1229,
1987,
72,
2695,
1862,
296,
1745,
359,
185,
1357,
2945,
541,
1681,
2684,
434,
21,
2789,
402,
952,
1553,
629,
1655,
1569,
1609,
1567,
1880,
2432,
270
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-169/500/500",
"createdAt": "2024-06-19T13:11:26.394Z",
"updatedAt": "2024-06-30T07:57:44.435Z"
}