example-data.com

songs

songs

Page 9 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": 193,
      "albumId": 19,
      "artistId": 8,
      "title": "Royals",
      "slug": "royals-193",
      "trackNumber": 4,
      "durationSeconds": 179,
      "isExplicit": true,
      "playCount": 25406876,
      "createdAt": "2026-02-15T08:07:58.578Z"
    },
    {
      "id": 194,
      "albumId": 19,
      "artistId": 8,
      "title": "White Christmas",
      "slug": "white-christmas-194",
      "trackNumber": 5,
      "durationSeconds": 186,
      "isExplicit": false,
      "playCount": 26194895,
      "createdAt": "2021-11-15T19:01:11.118Z"
    },
    {
      "id": 195,
      "albumId": 19,
      "artistId": 8,
      "title": "Papa's Got a Brand New Bag",
      "slug": "papas-got-a-brand-new-bag-195",
      "trackNumber": 6,
      "durationSeconds": 309,
      "isExplicit": false,
      "playCount": 30047750,
      "createdAt": "2026-02-15T20:26:10.673Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 2978,
    "totalPages": 125
  },
  "links": {
    "self": "/api/v1/songs?page=9",
    "next": "/api/v1/songs?page=10",
    "prev": "/api/v1/songs?page=8"
  }
}
Draftbit