songs
songs
Page 13 of 125.
Overview
-
Blue Tango
· 2 min
-
When a Man Loves a Woman
· 6 min
-
That's What Friends Are For
· 6 min
-
I'll Be Missing You
· 8 min
-
Tears in Heaven
· 3 min
-
A Hard Day's Night
· 4 min
-
(I've Had) the Time of My Life
· 3 min
-
(You're My) Soul & Inspiration
· 4 min
-
Time of the Season
· 4 min
-
Say It Right
· 6 min
-
Because of You
· 3 min
-
Till The End of Time
· 7 min
-
(Sittin' On) the Dock of the Bay
· 4 min
-
The Power of Love
· 6 min
-
Come Together
· 5 min
-
One Sweet Day
· 7 min
-
That's the Way (I Like It)
· 3 min
-
How Deep is Your Love?
· 6 min
-
We Got The Beat
· 4 min
-
Singing The Blues
· 3 min
-
Walk Don't Run
· 2 min
-
Piano Man
· 5 min
-
I Think I Love You
· 8 min
-
Rags to Riches
· 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": 289,
"albumId": 27,
"artistId": 12,
"title": "Blue Tango",
"slug": "blue-tango-289",
"trackNumber": 7,
"durationSeconds": 148,
"isExplicit": false,
"playCount": 20572068,
"createdAt": "2024-09-10T06:03:23.301Z"
},
{
"id": 290,
"albumId": 27,
"artistId": 12,
"title": "When a Man Loves a Woman",
"slug": "when-a-man-loves-a-woman-290",
"trackNumber": 8,
"durationSeconds": 386,
"isExplicit": true,
"playCount": 48772040,
"createdAt": "2026-01-22T16:05:16.130Z"
},
{
"id": 291,
"albumId": 27,
"artistId": 12,
"title": "That's What Friends Are For",
"slug": "thats-what-friends-are-for-291",
"trackNumber": 9,
"durationSeconds": 355,
"isExplicit": false,
"playCount": 30306059,
"createdAt": "2023-11-19T19:43:19.055Z"
}
],
"meta": {
"page": 13,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=13&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=14&limit=24",
"prev": "/api/v1/songs?page=12&limit=24"
}
}