example-data.com
Menu
Browse docs and collections

Overview

playlists / #160

Georgia On My Mind Mix

Georgia On My Mind Mix

Voro vae antiquus celo artificiose sub sufficio textilis ustulo amor crinis ad tabella.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 160,
  "userId": 237,
  "name": "Georgia On My Mind Mix",
  "slug": "georgia-on-my-mind-mix-160",
  "description": "Voro vae antiquus celo artificiose sub sufficio textilis ustulo amor crinis ad tabella.",
  "songIds": [
    1341,
    335,
    2880,
    2217,
    2578,
    2852,
    1870,
    1324,
    2977,
    2521,
    1572,
    1669,
    1708,
    1366,
    1370,
    1441,
    1473,
    2011,
    275,
    2697,
    2456,
    2849,
    2003,
    1293,
    1772,
    2047,
    2117,
    325,
    1798,
    2309,
    563,
    2700,
    354,
    1332,
    2317,
    800,
    52,
    2882,
    2761,
    2112,
    2323,
    1948,
    222
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-160/500/500",
  "createdAt": "2025-12-21T17:59:56.348Z",
  "updatedAt": "2026-01-20T04:39:59.654Z"
}