songs
songs
Page 49 of 125.
Overview
-
More Than Words
· 5 min
-
On Bended Knee
· 8 min
-
Sailing
· 4 min
-
Band of Gold
· 6 min
-
Que sera sera (Whatever will be will be)
· 6 min
-
Don't Fence Me In
· 2 min
-
Party Rock Anthem
· 7 min
-
The Rose
· 4 min
-
Big Girls Don't Cry
· 5 min
-
I Can't Stop Loving You
· 3 min
-
Lady Marmalade (Voulez-Vous Coucher Aver Moi Ce Soir?)
· 8 min
-
Unchained Melody
· 7 min
-
Every Breath You Take
· 6 min
-
Beautiful Day
· 6 min
-
It's Too Late
· 2 min
-
Mony Mony
· 4 min
-
Help!
· 2 min
-
Everyday People
· 6 min
-
(Just Like) Starting Over
· 4 min
-
Dancing Queen
· 3 min
-
Won't Get Fooled Again
· 5 min
-
This Diamond Ring
· 7 min
-
Without You
· 2 min
-
Shake You Down
· 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": 1153,
"albumId": 109,
"artistId": 42,
"title": "More Than Words",
"slug": "more-than-words-1153",
"trackNumber": 12,
"durationSeconds": 304,
"isExplicit": false,
"playCount": 20931804,
"createdAt": "2023-12-19T11:36:48.003Z"
},
{
"id": 1154,
"albumId": 109,
"artistId": 42,
"title": "On Bended Knee",
"slug": "on-bended-knee-1154",
"trackNumber": 13,
"durationSeconds": 473,
"isExplicit": false,
"playCount": 47564335,
"createdAt": "2025-01-25T09:19:12.355Z"
},
{
"id": 1155,
"albumId": 109,
"artistId": 42,
"title": "Sailing",
"slug": "sailing-1155",
"trackNumber": 14,
"durationSeconds": 246,
"isExplicit": false,
"playCount": 44347533,
"createdAt": "2025-12-26T21:09:50.163Z"
}
],
"meta": {
"page": 49,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=49&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=50&limit=24",
"prev": "/api/v1/songs?page=48&limit=24"
}
}