songs
songs
Page 20 of 125.
Overview
-
Cat's in the Cradle
· 4 min
-
Fantasy
· 5 min
-
House of the Rising Sun
· 4 min
-
Jive Talkin'
· 6 min
-
Be My Baby
· 5 min
-
Puttin' on the Ritz
· 5 min
-
I Fall to Pieces
· 7 min
-
This Guy's in Love With You
· 7 min
-
Rhapsody in Blue
· 5 min
-
Kung Fu Fighting
· 7 min
-
Dancing in the Dark
· 4 min
-
Can't Help Falling in Love
· 3 min
-
Sweet Home Alabama
· 6 min
-
T For Texas (Blue Yodel No 1)
· 7 min
-
Sweet Soul Music
· 2 min
-
I Can Dream, Can't I?
· 7 min
-
Believe
· 2 min
-
Hey Jude
· 5 min
-
Peggy Sue
· 2 min
-
Get Back
· 7 min
-
Open Arms
· 2 min
-
Turn! Turn! Turn! (To Everything There is a Season)
· 2 min
-
Puttin' on the Ritz
· 8 min
-
Beautiful Day
· 6 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": 457,
"albumId": 43,
"artistId": 18,
"title": "Cat's in the Cradle",
"slug": "cats-in-the-cradle-457",
"trackNumber": 1,
"durationSeconds": 241,
"isExplicit": false,
"playCount": 40934570,
"createdAt": "2022-04-26T18:18:56.978Z"
},
{
"id": 458,
"albumId": 43,
"artistId": 18,
"title": "Fantasy",
"slug": "fantasy-458",
"trackNumber": 2,
"durationSeconds": 304,
"isExplicit": false,
"playCount": 29357270,
"createdAt": "2022-07-20T22:34:57.286Z"
},
{
"id": 459,
"albumId": 43,
"artistId": 18,
"title": "House of the Rising Sun",
"slug": "house-of-the-rising-sun-459",
"trackNumber": 3,
"durationSeconds": 219,
"isExplicit": false,
"playCount": 35767817,
"createdAt": "2025-12-23T20:37:49.956Z"
}
],
"meta": {
"page": 20,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=20&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=21&limit=24",
"prev": "/api/v1/songs?page=19&limit=24"
}
}