example-data.com

playlists

playlists

Browse 200 playlists records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

curl -sS \
  "https://example-data.com/api/v1/playlists?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/playlists?limit=25"
);
const { data, meta } = await res.json();
import type { Playlist, ListEnvelope } from "https://example-data.com/types/playlists.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/playlists?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Playlist>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/playlists",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 1,
      "userId": 43,
      "name": "When Doves Cry Mix",
      "slug": "when-doves-cry-mix-1",
      "description": "Virgo abstergo dolore ager ex autem conspergo vesper tamisium cura canis.",
      "songIds": [
        1095,
        1910,
        2416,
        1482,
        416,
        2616,
        1192,
        1287,
        855,
        153,
        21,
        417,
        1382
      ],
      "isPublic": true,
      "coverUrl": "https://picsum.photos/seed/playlist-1/500/500",
      "createdAt": "2025-08-18T18:59:01.651Z",
      "updatedAt": "2025-08-19T04:35:38.799Z"
    },
    {
      "id": 2,
      "userId": 97,
      "name": "I Feel For You Mix",
      "slug": "i-feel-for-you-mix-2",
      "description": "Carcer colligo comburo umerus incidunt.",
      "songIds": [
        1584,
        2936,
        1118,
        1001,
        1915,
        877,
        2734,
        1895,
        466,
        1536,
        2691,
        254,
        429,
        650,
        1361,
        1862,
        1333,
        103,
        2617,
        2730,
        54
      ],
      "isPublic": true,
      "coverUrl": "https://picsum.photos/seed/playlist-2/500/500",
      "createdAt": "2025-02-01T18:26:05.281Z",
      "updatedAt": "2025-02-09T08:18:05.547Z"
    },
    {
      "id": 3,
      "userId": 247,
      "name": "Cracklin' Rosie Mix",
      "slug": "cracklin-rosie-mix-3",
      "description": "Turba turpis ascisco aestas vulnus voluptates corrigo depono vestigium toties.",
      "songIds": [
        1121,
        1997,
        1590,
        344,
        1873,
        836,
        468,
        2881,
        1173,
        2583,
        2060,
        553,
        2912,
        2524,
        2566,
        145,
        360,
        768,
        1719,
        2568,
        228,
        372
      ],
      "isPublic": true,
      "coverUrl": "https://picsum.photos/seed/playlist-3/500/500",
      "createdAt": "2025-08-14T16:40:28.143Z",
      "updatedAt": "2025-09-01T05:46:20.427Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 200,
    "totalPages": 8
  },
  "links": {
    "self": "/api/v1/playlists?page=1",
    "first": "/api/v1/playlists?page=1",
    "last": "/api/v1/playlists?page=8",
    "next": "/api/v1/playlists?page=2",
    "prev": null
  }
}

View full response →

Draftbit