example-data.com
Menu
Browse docs and collections

Overview

playlists / #174

If I Didn't Care Mix

If I Didn't Care Mix

Delicate illum turpis caelestis acsi cunae cattus beneficium caute ciminatio assumenda adhaero maxime delicate cruentus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 174,
  "userId": 227,
  "name": "If I Didn't Care Mix",
  "slug": "if-i-didnt-care-mix-174",
  "description": "Delicate illum turpis caelestis acsi cunae cattus beneficium caute ciminatio assumenda adhaero maxime delicate cruentus.",
  "songIds": [
    295,
    2018,
    1590,
    1723,
    506,
    2160,
    710,
    1739,
    2392,
    705,
    2035,
    2869,
    1691,
    2602,
    1132,
    2211,
    1810,
    1416,
    2209,
    1101,
    261,
    1898,
    2502,
    1267,
    2726,
    1729,
    781,
    2593,
    35,
    801,
    1583,
    798,
    1002,
    1173,
    1204,
    2796,
    1219
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-174/500/500",
  "createdAt": "2025-06-07T07:04:01.049Z",
  "updatedAt": "2025-06-17T16:29:27.841Z"
}