example-data.com
Menu
Browse docs and collections

songs

songs

Page 119 of 125.

Overview

Request

curl example

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

JavaScript example

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

TypeScript example

// Download once: mkdir -p types && curl -o types/songs.d.ts https://example-data.com/types/songs.d.ts
import type { Song, ListEnvelope } from "./types/songs";

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

Python example

import requests

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

Response

{
  "data": [
    {
      "id": 2833,
      "albumId": 269,
      "artistId": 94,
      "title": "Firework",
      "slug": "firework-2833",
      "trackNumber": 4,
      "durationSeconds": 277,
      "isExplicit": false,
      "playCount": 1422001,
      "createdAt": "2025-07-25T23:19:59.689Z"
    },
    {
      "id": 2834,
      "albumId": 269,
      "artistId": 94,
      "title": "California Girls",
      "slug": "california-girls-2834",
      "trackNumber": 5,
      "durationSeconds": 109,
      "isExplicit": false,
      "playCount": 47232932,
      "createdAt": "2024-04-02T21:13:28.751Z"
    },
    {
      "id": 2835,
      "albumId": 269,
      "artistId": 94,
      "title": "(I've Got a Gal In) Kalamazoo",
      "slug": "ive-got-a-gal-in-kalamazoo-2835",
      "trackNumber": 6,
      "durationSeconds": 271,
      "isExplicit": false,
      "playCount": 38238622,
      "createdAt": "2022-08-25T04:09:42.580Z"
    }
  ],
  "meta": {
    "page": 119,
    "limit": 24,
    "total": 2978,
    "totalPages": 125
  },
  "links": {
    "self": "/api/v1/songs?page=119&limit=24",
    "first": "/api/v1/songs?page=1&limit=24",
    "last": "/api/v1/songs?page=125&limit=24",
    "next": "/api/v1/songs?page=120&limit=24",
    "prev": "/api/v1/songs?page=118&limit=24"
  }
}