example-data.com
Menu
Browse docs and collections

Overview

playlists / #65

It's All in the Game Mix

It's All in the Game Mix

Unus aestivus tollo bellum strues crudelis iste ventus asporto cruentus cohors concido tenuis vesper caput.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 65,
  "userId": 70,
  "name": "It's All in the Game Mix",
  "slug": "its-all-in-the-game-mix-65",
  "description": "Unus aestivus tollo bellum strues crudelis iste ventus asporto cruentus cohors concido tenuis vesper caput.",
  "songIds": [
    1173,
    778,
    2121,
    888,
    2030,
    1223,
    208,
    910,
    734,
    1089,
    750,
    1414,
    1224,
    426,
    1279,
    2313,
    1141,
    1651
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-65/500/500",
  "createdAt": "2026-03-03T03:43:42.305Z",
  "updatedAt": "2026-03-27T17:37:24.125Z"
}