example-data.com

albums

albums

Page 3 of 10.

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

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

res = requests.get(
    "https://example-data.com/api/v1/albums",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 49,
      "artistId": 19,
      "title": "Damno",
      "slug": "damno-49",
      "releaseDate": "2019-02-20",
      "trackCount": 13,
      "durationSeconds": 5118,
      "genres": [
        "metal",
        "country"
      ],
      "coverUrl": "https://picsum.photos/seed/album-49/500/500",
      "createdAt": "2025-10-30T05:54:00.885Z"
    },
    {
      "id": 50,
      "artistId": 20,
      "title": "Custodia defleo synagoga",
      "slug": "custodia-defleo-synagoga-50",
      "releaseDate": "2003-09-25",
      "trackCount": 9,
      "durationSeconds": 2207,
      "genres": [
        "indie",
        "folk"
      ],
      "coverUrl": "https://picsum.photos/seed/album-50/500/500",
      "createdAt": "2023-07-31T05:00:56.099Z"
    },
    {
      "id": 51,
      "artistId": 21,
      "title": "Tremo",
      "slug": "tremo-51",
      "releaseDate": "2005-08-08",
      "trackCount": 9,
      "durationSeconds": 2587,
      "genres": [
        "punk",
        "electronic"
      ],
      "coverUrl": "https://picsum.photos/seed/album-51/500/500",
      "createdAt": "2025-01-19T02:24:11.450Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 282,
    "totalPages": 12
  },
  "links": {
    "self": "/api/v1/albums?page=3",
    "next": "/api/v1/albums?page=4",
    "prev": "/api/v1/albums?page=2"
  }
}
Draftbit