Roses Are Red Mix
Voluptate socius aqua clibanus vix.
Overview
playlists / #103
Voluptate socius aqua clibanus vix.
Roses Are Red Mix
Request
curl example
curl -sS \ "https://example-data.com/api/v1/playlists/103" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/playlists/103" ); 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/103"
);
const playlist = (await res.json()) as Playlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/playlists/103"
)
playlist = res.json() Response
{
"id": 103,
"userId": 191,
"name": "Roses Are Red Mix",
"slug": "roses-are-red-mix-103",
"description": "Voluptate socius aqua clibanus vix.",
"songIds": [
1539,
1395,
2190,
987,
2174,
2145,
1095,
2769,
512,
701,
357
],
"isPublic": false,
"coverUrl": "https://picsum.photos/seed/playlist-103/500/500",
"createdAt": "2025-01-24T02:31:44.094Z",
"updatedAt": "2025-02-21T21:58:07.883Z"
}