songs
songs
Page 110 of 125.
Overview
-
Le Freak
· 2 min
-
Groovin'
· 2 min
-
Brand New Key
· 5 min
-
Joy to the World
· 2 min
-
Sugar Shack
· 8 min
-
Tonight's the Night (Gonna Be Alright)
· 3 min
-
Ballerina
· 7 min
-
Can't Get Enough of Your Love, Babe
· 4 min
-
Uncle Albert (Admiral Halsey)
· 7 min
-
Ain't No Sunshine
· 3 min
-
We Are the Champions
· 7 min
-
Yakety Yak
· 5 min
-
Yellow Rose of Texas
· 6 min
-
Say It Right
· 7 min
-
Heart of Gold
· 8 min
-
Flashdance. What a Feeling
· 8 min
-
Beautiful Day
· 6 min
-
Love is a Many Splendoured Thing
· 3 min
-
Raindrops Keep Falling On My Head
· 5 min
-
I Can Dream, Can't I?
· 6 min
-
One Sweet Day
· 5 min
-
The Wanderer
· 5 min
-
Mr Big Stuff
· 4 min
-
Love Letters in the Sand
· 7 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": 2617,
"albumId": 249,
"artistId": 87,
"title": "Le Freak",
"slug": "le-freak-2617",
"trackNumber": 6,
"durationSeconds": 116,
"isExplicit": false,
"playCount": 29718975,
"createdAt": "2024-11-13T08:07:26.017Z"
},
{
"id": 2618,
"albumId": 249,
"artistId": 87,
"title": "Groovin'",
"slug": "groovin-2618",
"trackNumber": 7,
"durationSeconds": 127,
"isExplicit": false,
"playCount": 13027168,
"createdAt": "2025-05-03T06:31:47.101Z"
},
{
"id": 2619,
"albumId": 249,
"artistId": 87,
"title": "Brand New Key",
"slug": "brand-new-key-2619",
"trackNumber": 8,
"durationSeconds": 302,
"isExplicit": false,
"playCount": 22716140,
"createdAt": "2021-06-03T10:04:09.006Z"
}
],
"meta": {
"page": 110,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=110&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=111&limit=24",
"prev": "/api/v1/songs?page=109&limit=24"
}
}