songs
songs
Page 50 of 125.
Overview
-
This Land is Your Land
· 8 min
-
Begin the Beguine
· 2 min
-
Walk This Way
· 8 min
-
Livin' La Vida Loca
· 3 min
-
Ghostbusters
· 2 min
-
That'll Be the Day
· 7 min
-
Frankenstein
· 3 min
-
You Make Me Feel Brand New
· 4 min
-
Right Back Where We Started From
· 3 min
-
Hey Baby
· 4 min
-
Sentimental Journey
· 4 min
-
Beauty & the Beast
· 7 min
-
Do That to Me One More Time
· 3 min
-
That's Amore
· 6 min
-
Rag Doll
· 6 min
-
I Heard it Through the Grapevine
· 4 min
-
Mr Tambourine Man
· 5 min
-
1999
· 8 min
-
The Morning After
· 7 min
-
Don't Be Cruel
· 8 min
-
Pon De Replay
· 2 min
-
Gangsta's Paradise
· 5 min
-
Open Arms
· 5 min
-
Kiss & Say Goodbye
· 5 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": 1177,
"albumId": 111,
"artistId": 42,
"title": "This Land is Your Land",
"slug": "this-land-is-your-land-1177",
"trackNumber": 7,
"durationSeconds": 451,
"isExplicit": false,
"playCount": 32927049,
"createdAt": "2022-02-11T22:48:57.970Z"
},
{
"id": 1178,
"albumId": 111,
"artistId": 42,
"title": "Begin the Beguine",
"slug": "begin-the-beguine-1178",
"trackNumber": 8,
"durationSeconds": 124,
"isExplicit": false,
"playCount": 46310404,
"createdAt": "2025-08-26T23:09:46.504Z"
},
{
"id": 1179,
"albumId": 111,
"artistId": 42,
"title": "Walk This Way",
"slug": "walk-this-way-1179",
"trackNumber": 9,
"durationSeconds": 468,
"isExplicit": false,
"playCount": 43752559,
"createdAt": "2022-01-10T12:06:08.647Z"
}
],
"meta": {
"page": 50,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=50&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=51&limit=24",
"prev": "/api/v1/songs?page=49&limit=24"
}
}