songs
songs
Page 100 of 125.
Overview
-
Let's Get it On
· 4 min
-
The Boy is Mine
· 5 min
-
Shake Down
· 6 min
-
Higher Love
· 6 min
-
You Make Me Feel Like Dancing
· 2 min
-
The Boy is Mine
· 3 min
-
Love Shack
· 7 min
-
Mrs Robinson
· 6 min
-
I Believe I Can Fly
· 3 min
-
Car Wash
· 2 min
-
Walk Don't Run
· 3 min
-
Do That to Me One More Time
· 3 min
-
My Love
· 7 min
-
Rapture
· 4 min
-
Superstar
· 7 min
-
Sweet Soul Music
· 5 min
-
How Much is That Doggy in the Window?
· 2 min
-
Papa's Got a Brand New Bag
· 8 min
-
Blurred Lines
· 3 min
-
You're So Vain
· 4 min
-
Say Say Say
· 4 min
-
Travellin' Band
· 6 min
-
Papa Don't Preach
· 5 min
-
So Much in Love
· 4 min
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": 2377,
"albumId": 225,
"artistId": 79,
"title": "Let's Get it On",
"slug": "lets-get-it-on-2377",
"trackNumber": 1,
"durationSeconds": 214,
"isExplicit": false,
"playCount": 14226440,
"createdAt": "2021-10-27T18:55:09.438Z"
},
{
"id": 2378,
"albumId": 225,
"artistId": 79,
"title": "The Boy is Mine",
"slug": "the-boy-is-mine-2378",
"trackNumber": 2,
"durationSeconds": 300,
"isExplicit": false,
"playCount": 11824482,
"createdAt": "2023-07-22T00:33:33.464Z"
},
{
"id": 2379,
"albumId": 225,
"artistId": 79,
"title": "Shake Down",
"slug": "shake-down-2379",
"trackNumber": 3,
"durationSeconds": 367,
"isExplicit": false,
"playCount": 35529192,
"createdAt": "2025-01-05T20:31:55.810Z"
}
],
"meta": {
"page": 100,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=100&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=101&limit=24",
"prev": "/api/v1/songs?page=99&limit=24"
}
}