songs
songs
Page 28 of 125.
Overview
-
Mercy Mercy Me (The Ecology)
· 2 min
-
Ebony & Ivory
· 3 min
-
Let Me Love You
· 4 min
-
Do You Love Me?
· 4 min
-
Wild Thing
· 4 min
-
Let's Dance
· 7 min
-
Ac-cent-tchu-ate the Positive
· 5 min
-
What a Fool Believes
· 7 min
-
Love Child
· 6 min
-
Rock Your Baby
· 2 min
-
You Always Hurt the One You Love
· 7 min
-
St Louis Blues
· 6 min
-
Wannabe
· 4 min
-
I'll Be There
· 2 min
-
Mmmbop
· 3 min
-
Don't Let the Sun Go Down On Me
· 6 min
-
(Just Like) Starting Over
· 7 min
-
The Sign
· 6 min
-
Streets of Philadelphia
· 2 min
-
Travellin' Man
· 5 min
-
Great Balls of Fire
· 3 min
-
Freak Me
· 7 min
-
Revolution
· 5 min
-
I Can't Stop Loving You
· 8 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": 649,
"albumId": 59,
"artistId": 24,
"title": "Mercy Mercy Me (The Ecology)",
"slug": "mercy-mercy-me-the-ecology-649",
"trackNumber": 8,
"durationSeconds": 114,
"isExplicit": false,
"playCount": 38382338,
"createdAt": "2024-04-25T18:39:19.740Z"
},
{
"id": 650,
"albumId": 59,
"artistId": 24,
"title": "Ebony & Ivory",
"slug": "ebony-ivory-650",
"trackNumber": 9,
"durationSeconds": 185,
"isExplicit": false,
"playCount": 49154085,
"createdAt": "2023-06-20T10:28:51.616Z"
},
{
"id": 651,
"albumId": 59,
"artistId": 24,
"title": "Let Me Love You",
"slug": "let-me-love-you-651",
"trackNumber": 10,
"durationSeconds": 218,
"isExplicit": false,
"playCount": 5659106,
"createdAt": "2025-06-07T16:49:05.134Z"
}
],
"meta": {
"page": 28,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=28&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=29&limit=24",
"prev": "/api/v1/songs?page=27&limit=24"
}
}