example-data.com
Menu
Browse docs and collections

Overview

playlists / #129

Poker Face Mix

Poker Face Mix

Vir autem optio chirographum vilicus pauper est.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 129,
  "userId": 79,
  "name": "Poker Face Mix",
  "slug": "poker-face-mix-129",
  "description": "Vir autem optio chirographum vilicus pauper est.",
  "songIds": [
    1306,
    2070,
    1229,
    474,
    1664,
    2187,
    2169,
    2921,
    2122,
    173,
    1577,
    2348,
    1171,
    2009,
    2044,
    543,
    2017,
    723,
    1738,
    702,
    1464,
    948,
    1113,
    1362,
    175,
    2584,
    2485,
    725,
    1559,
    1686,
    2818,
    1416,
    1013,
    2474,
    1224,
    2214,
    88,
    1053,
    634,
    1170,
    1863,
    617,
    2592,
    815,
    1880,
    1768,
    834
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-129/500/500",
  "createdAt": "2025-12-30T08:32:51.894Z",
  "updatedAt": "2026-01-14T17:53:16.416Z"
}