example-data.com
Menu
Browse docs and collections

Overview

playlists / #170

(Ghost) Riders in the Sky Mix

(Ghost) Riders in the Sky Mix

Tam vulticulus deduco texo nemo brevis denego cubitum peior abeo cervus numquam aliquid cum vitae.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 170,
  "userId": 12,
  "name": "(Ghost) Riders in the Sky Mix",
  "slug": "ghost-riders-in-the-sky-mix-170",
  "description": "Tam vulticulus deduco texo nemo brevis denego cubitum peior abeo cervus numquam aliquid cum vitae.",
  "songIds": [
    40,
    409,
    2582,
    1482,
    2615,
    1798,
    2018,
    1842,
    2055,
    771,
    2307,
    2309,
    1733,
    799,
    2736,
    1771,
    1408,
    1448,
    2384,
    815,
    2433,
    606,
    741,
    2869,
    2829,
    1924,
    672,
    1434,
    1484,
    446,
    1563,
    2456,
    817,
    1912,
    1661,
    2150,
    1155,
    791,
    2069,
    2659,
    1031,
    546,
    794,
    2216,
    1630,
    1681
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-170/500/500",
  "createdAt": "2026-05-11T18:32:09.056Z",
  "updatedAt": "2026-05-30T16:43:00.932Z"
}