songs
songs
Page 90 of 125.
Overview
-
(Just Like) Starting Over
· 4 min
-
Sunshine of Your Love
· 7 min
-
Travellin' Band
· 6 min
-
Stardust
· 3 min
-
Nothing Compares 2 U
· 4 min
-
Goodbye Yellow Brick Road
· 2 min
-
Cars
· 2 min
-
Walk Like an Egyptian
· 4 min
-
My Sweet Lord
· 4 min
-
Na Na Hey Hey (Kiss Him Goodbye)
· 5 min
-
I'm Walking Behind You
· 2 min
-
April Showers
· 3 min
-
All My Lovin' (You're Never Gonna Get It)
· 7 min
-
Walk Don't Run
· 4 min
-
Because You Loved Me
· 4 min
-
Without You
· 4 min
-
Mack the Knife
· 8 min
-
Another One Bites the Dust
· 3 min
-
I Will Survive
· 4 min
-
Change the World
· 4 min
-
Don't You Want Me
· 5 min
-
Foolish Games
· 4 min
-
Wichita Lineman
· 4 min
-
A Thousand Miles
· 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": 2137,
"albumId": 201,
"artistId": 71,
"title": "(Just Like) Starting Over",
"slug": "just-like-starting-over-2137",
"trackNumber": 4,
"durationSeconds": 253,
"isExplicit": false,
"playCount": 29234428,
"createdAt": "2022-11-06T04:43:53.583Z"
},
{
"id": 2138,
"albumId": 201,
"artistId": 71,
"title": "Sunshine of Your Love",
"slug": "sunshine-of-your-love-2138",
"trackNumber": 5,
"durationSeconds": 432,
"isExplicit": false,
"playCount": 23373140,
"createdAt": "2025-10-14T07:42:11.087Z"
},
{
"id": 2139,
"albumId": 201,
"artistId": 71,
"title": "Travellin' Band",
"slug": "travellin-band-2139",
"trackNumber": 6,
"durationSeconds": 383,
"isExplicit": false,
"playCount": 3290742,
"createdAt": "2023-09-06T06:34:48.489Z"
}
],
"meta": {
"page": 90,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=90&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=91&limit=24",
"prev": "/api/v1/songs?page=89&limit=24"
}
}