example-data.com
Menu
Browse docs and collections

Overview

playlists / #14

I Feel For You Mix

I Feel For You Mix

Arto depulso ars ter sum coerceo cras clamo annus absorbeo xiphias decimus ocer vesco.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 14,
  "userId": 46,
  "name": "I Feel For You Mix",
  "slug": "i-feel-for-you-mix-14",
  "description": "Arto depulso ars ter sum coerceo cras clamo annus absorbeo xiphias decimus ocer vesco.",
  "songIds": [
    1551,
    359,
    2051,
    2390,
    1256,
    404,
    416,
    569,
    2708,
    742,
    2410,
    2175,
    1789,
    964,
    1589,
    2819,
    1564,
    653,
    2294,
    2464,
    2242,
    1157,
    1054,
    2329,
    2017,
    513,
    2744
  ],
  "isPublic": true,
  "coverUrl": "https://picsum.photos/seed/playlist-14/500/500",
  "createdAt": "2025-12-16T03:34:19.076Z",
  "updatedAt": "2025-12-18T19:04:15.624Z"
}