example-data.com

playlists / #64

The Girl From Ipanema Mix

The Girl From Ipanema Mix

Creo capto ventosus hic adeo tempore volva civis aduro ea dignissimos.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/playlists/64" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/playlists/64"
);
const playlist = await res.json();
import type { Playlist } from "https://example-data.com/types/playlists.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/playlists/64"
);
const playlist = (await res.json()) as Playlist;
import requests

res = requests.get(
    "https://example-data.com/api/v1/playlists/64"
)
playlist = res.json()
{
  "id": 64,
  "userId": 59,
  "name": "The Girl From Ipanema Mix",
  "slug": "the-girl-from-ipanema-mix-64",
  "description": "Creo capto ventosus hic adeo tempore volva civis aduro ea dignissimos.",
  "songIds": [
    589,
    2965,
    1790,
    1582,
    1563,
    1516,
    2094,
    1048,
    1999,
    426,
    75,
    1812,
    2866,
    1038,
    2041,
    298,
    1604,
    2019,
    1650,
    1010,
    52,
    2313,
    2860,
    2118,
    916,
    901,
    1442,
    477,
    889
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-64/500/500",
  "createdAt": "2025-10-30T07:37:20.231Z",
  "updatedAt": "2025-11-13T03:08:33.027Z"
}
Draftbit