example-data.com

songs

songs

Page 10 of 10.

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

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

res = requests.get(
    "https://example-data.com/api/v1/songs",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 217,
      "albumId": 21,
      "artistId": 8,
      "title": "Gold Digger",
      "slug": "gold-digger-217",
      "trackNumber": 5,
      "durationSeconds": 264,
      "isExplicit": true,
      "playCount": 4938687,
      "createdAt": "2021-10-21T07:30:51.311Z"
    },
    {
      "id": 218,
      "albumId": 21,
      "artistId": 8,
      "title": "I'm Looking Over a Four Leaf Clover",
      "slug": "im-looking-over-a-four-leaf-clover-218",
      "trackNumber": 6,
      "durationSeconds": 428,
      "isExplicit": true,
      "playCount": 805108,
      "createdAt": "2025-11-30T16:12:42.341Z"
    },
    {
      "id": 219,
      "albumId": 21,
      "artistId": 8,
      "title": "Seasons in the Sun",
      "slug": "seasons-in-the-sun-219",
      "trackNumber": 7,
      "durationSeconds": 347,
      "isExplicit": false,
      "playCount": 35815445,
      "createdAt": "2023-03-18T10:38:29.811Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 2978,
    "totalPages": 125
  },
  "links": {
    "self": "/api/v1/songs?page=10",
    "next": "/api/v1/songs?page=11",
    "prev": "/api/v1/songs?page=9"
  }
}
Draftbit