example-data.com
Menu
Browse docs and collections

Overview

playlists / #12

Fly Robin Fly Mix

Fly Robin Fly Mix

Synagoga coniuratio pectus socius truculenter sit a universe tolero terminatio aureus alveus.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/playlists/12" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/playlists/12"
);
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/12"
);
const playlist = (await res.json()) as Playlist;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/playlists/12"
)
playlist = res.json()

Response

{
  "id": 12,
  "userId": 7,
  "name": "Fly Robin Fly Mix",
  "slug": "fly-robin-fly-mix-12",
  "description": "Synagoga coniuratio pectus socius truculenter sit a universe tolero terminatio aureus alveus.",
  "songIds": [
    146,
    2075,
    696,
    138,
    1840,
    2221,
    695,
    2460,
    1147,
    174,
    116,
    2135,
    1042,
    1736,
    771,
    1903,
    820,
    2790,
    69,
    878,
    2503
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-12/500/500",
  "createdAt": "2025-07-16T22:48:15.216Z",
  "updatedAt": "2025-07-23T08:43:32.909Z"
}