songs
songs
Page 8 of 125.
Overview
-
Love's Theme
· 5 min
-
Lonely Boy
· 6 min
-
Tammy
· 3 min
-
This Diamond Ring
· 4 min
-
The Thing
· 4 min
-
Purple Rain
· 4 min
-
That'll Be the Day
· 7 min
-
Purple Haze
· 2 min
-
Walk Like a Man
· 8 min
-
Crazy For You
· 7 min
-
Losing My Religion
· 2 min
-
Get Down Tonight
· 4 min
-
We Are Family
· 2 min
-
Theme From 'Greatest American Hero' (Believe It Or Not)
· 4 min
-
Endless Love
· 5 min
-
Come On-a My House
· 6 min
-
The Loco-Motion
· 4 min
-
Queen of Hearts
· 6 min
-
Knock On Wood
· 7 min
-
I Want to Know What Love Is
· 3 min
-
The Boy is Mine
· 8 min
-
Goodbye Yellow Brick Road
· 8 min
-
We've Only Just Begun
· 6 min
-
In the Year 2525 (Exordium & Terminus)
· 3 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": 169,
"albumId": 17,
"artistId": 7,
"title": "Love's Theme",
"slug": "loves-theme-169",
"trackNumber": 6,
"durationSeconds": 288,
"isExplicit": false,
"playCount": 35136480,
"createdAt": "2025-05-07T14:56:52.551Z"
},
{
"id": 170,
"albumId": 17,
"artistId": 7,
"title": "Lonely Boy",
"slug": "lonely-boy-170",
"trackNumber": 7,
"durationSeconds": 341,
"isExplicit": false,
"playCount": 30599569,
"createdAt": "2021-06-13T17:55:46.568Z"
},
{
"id": 171,
"albumId": 17,
"artistId": 7,
"title": "Tammy",
"slug": "tammy-171",
"trackNumber": 8,
"durationSeconds": 167,
"isExplicit": false,
"playCount": 32404790,
"createdAt": "2025-05-12T11:34:27.172Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=8&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=9&limit=24",
"prev": "/api/v1/songs?page=7&limit=24"
}
}