songs
songs
Page 3 of 125.
Overview
-
Please Mr Postman
· 5 min
-
Brother, Can You Spare a Dime?
· 4 min
-
Que sera sera (Whatever will be will be)
· 8 min
-
Shadow Dancing
· 7 min
-
Private Eyes
· 3 min
-
Let it Be
· 8 min
-
Being With You
· 8 min
-
Cry
· 3 min
-
Rapture
· 3 min
-
I Can Dream, Can't I?
· 2 min
-
Roll With It
· 4 min
-
Walk On By
· 3 min
-
Rosanna
· 3 min
-
Walk Like an Egyptian
· 5 min
-
Love's Theme
· 3 min
-
Dizzy
· 6 min
-
The Twist
· 6 min
-
Another Day in Paradise
· 5 min
-
St Louis Blues
· 4 min
-
Sunshine Superman
· 2 min
-
Will You Love Me Tomorrow
· 2 min
-
(I've Had) the Time of My Life
· 7 min
-
Careless Whisper
· 7 min
-
Down Hearted Blues
· 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": 49,
"albumId": 6,
"artistId": 2,
"title": "Please Mr Postman",
"slug": "please-mr-postman-49",
"trackNumber": 6,
"durationSeconds": 328,
"isExplicit": false,
"playCount": 36852264,
"createdAt": "2026-05-16T14:20:41.761Z"
},
{
"id": 50,
"albumId": 6,
"artistId": 2,
"title": "Brother, Can You Spare a Dime?",
"slug": "brother-can-you-spare-a-dime-50",
"trackNumber": 7,
"durationSeconds": 264,
"isExplicit": false,
"playCount": 45267023,
"createdAt": "2024-07-06T23:21:44.877Z"
},
{
"id": 51,
"albumId": 6,
"artistId": 2,
"title": "Que sera sera (Whatever will be will be)",
"slug": "que-sera-sera-whatever-will-be-will-be-51",
"trackNumber": 8,
"durationSeconds": 451,
"isExplicit": false,
"playCount": 1476148,
"createdAt": "2021-11-19T19:33:49.702Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=3&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=4&limit=24",
"prev": "/api/v1/songs?page=2&limit=24"
}
}