example-data.com

playlists / #103

Roses Are Red Mix

Roses Are Red Mix

Voluptate socius aqua clibanus vix.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/playlists/103" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/playlists/103"
);
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/103"
);
const playlist = (await res.json()) as Playlist;
import requests

res = requests.get(
    "https://example-data.com/api/v1/playlists/103"
)
playlist = res.json()
{
  "id": 103,
  "userId": 191,
  "name": "Roses Are Red Mix",
  "slug": "roses-are-red-mix-103",
  "description": "Voluptate socius aqua clibanus vix.",
  "songIds": [
    1539,
    1395,
    2190,
    987,
    2174,
    2145,
    1095,
    2769,
    512,
    701,
    357
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-103/500/500",
  "createdAt": "2025-01-24T02:31:44.094Z",
  "updatedAt": "2025-02-21T21:58:07.883Z"
}
Draftbit