example-data.com

songs

songs

Page 6 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": 121,
      "albumId": 12,
      "artistId": 5,
      "title": "I Honestly Love You",
      "slug": "i-honestly-love-you-121",
      "trackNumber": 6,
      "durationSeconds": 311,
      "isExplicit": false,
      "playCount": 9318432,
      "createdAt": "2025-07-01T06:08:44.758Z"
    },
    {
      "id": 122,
      "albumId": 12,
      "artistId": 5,
      "title": "Your Cheatin' Heart",
      "slug": "your-cheatin-heart-122",
      "trackNumber": 7,
      "durationSeconds": 181,
      "isExplicit": false,
      "playCount": 27600411,
      "createdAt": "2023-07-26T13:38:34.583Z"
    },
    {
      "id": 123,
      "albumId": 12,
      "artistId": 5,
      "title": "Boogie Oogie Oogie",
      "slug": "boogie-oogie-oogie-123",
      "trackNumber": 8,
      "durationSeconds": 453,
      "isExplicit": true,
      "playCount": 48521285,
      "createdAt": "2022-11-17T23:13:33.757Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 2978,
    "totalPages": 125
  },
  "links": {
    "self": "/api/v1/songs?page=6",
    "next": "/api/v1/songs?page=7",
    "prev": "/api/v1/songs?page=5"
  }
}
Draftbit