Louie Louie Mix
Venia patior speculum demoror verto.
Overview
playlists / #38
Venia patior speculum demoror verto.
Louie Louie Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/38" ); 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/38"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/38"
)
playlist = res.json() Response
{
"id": 38,
"userId": 151,
"name": "Louie Louie Mix",
"slug": "louie-louie-mix-38",
"description": "Venia patior speculum demoror verto.",
"songIds": [
1562,
2763,
705,
2739,
455,
1821,
638,
1183,
293,
757,
2876,
30,
2777,
674,
2909,
1632,
2932,
835,
2738,
385,
2567,
1904,
1786,
1998,
1172,
338,
4,
2327,
2044,
2973,
112,
2878,
1023,
1964,
66,
1959,
85,
1038,
387,
1888,
2599,
318,
28,
250,
896,
1685,
2122,
1911
],
"isPublic": true,
"coverUrl": "https://picsum.photos/seed/playlist-38/500/500",
"createdAt": "2024-09-03T23:40:06.089Z",
"updatedAt": "2024-09-23T04:08:44.672Z"
}