songs
songs
Page 55 of 125.
Overview
-
Like a Virgin
· 5 min
-
Volare
· 2 min
-
In the Year 2525 (Exordium & Terminus)
· 8 min
-
How Do You Mend a Broken Heart
· 3 min
-
Brand New Key
· 4 min
-
Ballad of the Green Berets
· 4 min
-
Green Tambourine
· 5 min
-
All Shook Up
· 5 min
-
Flashdance. What a Feeling
· 2 min
-
Billie Jean
· 6 min
-
This Love
· 6 min
-
YMCA
· 2 min
-
Stronger
· 3 min
-
If (They Made Me a King)
· 5 min
-
Endless Love
· 5 min
-
Got to Give it Up
· 2 min
-
Flashdance. What a Feeling
· 5 min
-
Lola
· 7 min
-
Respect
· 7 min
-
Centerfold
· 2 min
-
My Guy
· 6 min
-
Karma Chameleon
· 6 min
-
Chain of Fools
· 2 min
-
Bye, Bye, Bye
· 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": 1297,
"albumId": 122,
"artistId": 45,
"title": "Like a Virgin",
"slug": "like-a-virgin-1297",
"trackNumber": 10,
"durationSeconds": 302,
"isExplicit": true,
"playCount": 16067811,
"createdAt": "2025-03-02T05:39:33.933Z"
},
{
"id": 1298,
"albumId": 123,
"artistId": 46,
"title": "Volare",
"slug": "volare-1298",
"trackNumber": 1,
"durationSeconds": 149,
"isExplicit": false,
"playCount": 24358766,
"createdAt": "2022-09-16T02:54:04.948Z"
},
{
"id": 1299,
"albumId": 123,
"artistId": 46,
"title": "In the Year 2525 (Exordium & Terminus)",
"slug": "in-the-year-2525-exordium-terminus-1299",
"trackNumber": 2,
"durationSeconds": 479,
"isExplicit": false,
"playCount": 9998845,
"createdAt": "2024-06-13T15:41:50.960Z"
}
],
"meta": {
"page": 55,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=55&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=56&limit=24",
"prev": "/api/v1/songs?page=54&limit=24"
}
}