Grenade Mix
Sed textus sollicito tum tenuis trans arbor reiciendis aggero cultellus omnis totidem stips cena.
Overview
playlists / #89
Sed textus sollicito tum tenuis trans arbor reiciendis aggero cultellus omnis totidem stips cena.
Grenade Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/89" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/89" ); 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/89"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/89"
)
playlist = res.json() Response
{
"id": 89,
"userId": 238,
"name": "Grenade Mix",
"slug": "grenade-mix-89",
"description": "Sed textus sollicito tum tenuis trans arbor reiciendis aggero cultellus omnis totidem stips cena.",
"songIds": [
176,
789,
2282,
2773,
486,
1017,
1607,
1799,
92,
1332,
2321,
2236,
1874,
168,
1200,
1781,
2933,
1125,
1221,
446,
305,
1817,
1212,
2438,
1654,
1589,
2518,
244,
274,
585,
2690,
977,
868,
2495,
1254,
2759,
598
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-89/500/500",
"createdAt": "2024-06-21T09:38:18.787Z",
"updatedAt": "2024-07-13T13:50:26.003Z"
}