example-data.com
Menu
Browse docs and collections

playlists

playlists

Browse 200 playlists records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

When Doves Cry Mix

When Doves Cry Mix

Virgo abstergo dolore ager ex autem conspergo vesper tamisium cura canis.

I Feel For You Mix

I Feel For You Mix

Carcer colligo comburo umerus incidunt.

Cracklin' Rosie Mix

Cracklin' Rosie Mix

Turba turpis ascisco aestas vulnus voluptates corrigo depono vestigium toties.

Red Red Wine Mix

Red Red Wine Mix

Turbo tardus repellat tactus aiunt cura atrox veniam ademptio.

You're Still the One Mix

You're Still the One Mix

Concedo brevis excepturi vinculum angulus vulpes certe exercitationem terror vulpes alias.

Pennies From Heaven Mix

Pennies From Heaven Mix

Tandem solvo ad arceo defaeco solutio.

Showing first 6 of 24 on this page.

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/playlists?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/playlists?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/playlists";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/playlists",
    params={"limit": 25},
)
data = res.json()

Response

{
  "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 →