example-data.com
Menu
Browse docs and collections

Overview

playlists / #117

Right Back Where We Started From Mix

Right Back Where We Started From Mix

Minima ater tego aro dedico vilicus comparo vesper aegrus harum cui decerno curiositas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 117,
  "userId": 138,
  "name": "Right Back Where We Started From Mix",
  "slug": "right-back-where-we-started-from-mix-117",
  "description": "Minima ater tego aro dedico vilicus comparo vesper aegrus harum cui decerno curiositas.",
  "songIds": [
    1713,
    1447,
    678,
    2216,
    1610,
    2869,
    587,
    2120,
    2673,
    1058,
    1925,
    1408,
    1805,
    1824,
    2140,
    2512,
    2407,
    2629,
    1370,
    1919,
    2556,
    350,
    769,
    2970,
    118,
    1378,
    1017,
    2604,
    2658,
    2515,
    513,
    2195,
    2192,
    2825,
    2173,
    1797
  ],
  "isPublic": false,
  "coverUrl": "https://picsum.photos/seed/playlist-117/500/500",
  "createdAt": "2025-04-07T08:17:11.414Z",
  "updatedAt": "2025-04-17T23:46:37.454Z"
}