example-data.com
Menu
Browse docs and collections

songs

songs

Page 109 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": 2593,
      "albumId": 246,
      "artistId": 86,
      "title": "The Hustle",
      "slug": "the-hustle-2593",
      "trackNumber": 8,
      "durationSeconds": 259,
      "isExplicit": false,
      "playCount": 2413351,
      "createdAt": "2025-04-12T23:52:14.029Z"
    },
    {
      "id": 2594,
      "albumId": 246,
      "artistId": 86,
      "title": "Drop it Like It's Hot",
      "slug": "drop-it-like-its-hot-2594",
      "trackNumber": 9,
      "durationSeconds": 379,
      "isExplicit": false,
      "playCount": 29034471,
      "createdAt": "2021-11-04T16:43:44.571Z"
    },
    {
      "id": 2595,
      "albumId": 247,
      "artistId": 87,
      "title": "You Light Up My Life",
      "slug": "you-light-up-my-life-2595",
      "trackNumber": 1,
      "durationSeconds": 233,
      "isExplicit": false,
      "playCount": 37636666,
      "createdAt": "2025-01-04T23:33:50.237Z"
    }
  ],
  "meta": {
    "page": 109,
    "limit": 24,
    "total": 2978,
    "totalPages": 125
  },
  "links": {
    "self": "/api/v1/songs?page=109&limit=24",
    "first": "/api/v1/songs?page=1&limit=24",
    "last": "/api/v1/songs?page=125&limit=24",
    "next": "/api/v1/songs?page=110&limit=24",
    "prev": "/api/v1/songs?page=108&limit=24"
  }
}