songs
songs
Page 2 of 125.
Overview
-
Till I Waltz Again With You
· 6 min
-
Morning Train (Nine to Five)
· 7 min
-
Me & Bobby McGee
· 3 min
-
Without You
· 6 min
-
Get Back
· 2 min
-
Why Do Fools Fall in Love?
· 6 min
-
Your Song
· 5 min
-
Sugar Shack
· 8 min
-
She's a Lady
· 7 min
-
Chattanooga Choo Choo
· 8 min
-
Use Somebody
· 3 min
-
In the Ghetto
· 4 min
-
Promiscuous
· 3 min
-
Spanish Harlem
· 4 min
-
St Louis Blues
· 2 min
-
Three Times a Lady
· 7 min
-
Rudolph, the Red-Nosed Reindeer
· 6 min
-
Boulevard of Broken Dreams
· 3 min
-
Doo Wop (That Thing)
· 5 min
-
Fame
· 4 min
-
Instant Karma
· 2 min
-
Hello Dolly
· 2 min
-
Beat It
· 2 min
-
Baby Got Back
· 2 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": 25,
"albumId": 4,
"artistId": 2,
"title": "Till I Waltz Again With You",
"slug": "till-i-waltz-again-with-you-25",
"trackNumber": 1,
"durationSeconds": 363,
"isExplicit": false,
"playCount": 24731162,
"createdAt": "2025-03-19T05:21:20.184Z"
},
{
"id": 26,
"albumId": 4,
"artistId": 2,
"title": "Morning Train (Nine to Five)",
"slug": "morning-train-nine-to-five-26",
"trackNumber": 2,
"durationSeconds": 432,
"isExplicit": false,
"playCount": 38615386,
"createdAt": "2023-01-10T15:17:57.671Z"
},
{
"id": 27,
"albumId": 4,
"artistId": 2,
"title": "Me & Bobby McGee",
"slug": "me-bobby-mcgee-27",
"trackNumber": 3,
"durationSeconds": 202,
"isExplicit": false,
"playCount": 8877419,
"createdAt": "2021-10-27T18:45:31.581Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=2&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=3&limit=24",
"prev": "/api/v1/songs?page=1&limit=24"
}
}