songs
songs
Page 79 of 125.
Overview
-
Please Mr Postman
· 4 min
-
Every Breath You Take
· 7 min
-
All My Lovin' (You're Never Gonna Get It)
· 4 min
-
Sweet Home Alabama
· 5 min
-
Call Me Maybe
· 5 min
-
Tears in Heaven
· 2 min
-
(Sexual) Healing
· 2 min
-
Ben
· 8 min
-
Abracadabra
· 6 min
-
Ray of Light
· 3 min
-
Rag Mop
· 4 min
-
Dancing in the Dark
· 3 min
-
Maneater
· 2 min
-
Truly Madly Deeply
· 6 min
-
Light My Fire
· 3 min
-
Tie a Yellow Ribbon 'round the Old Oak Tree
· 6 min
-
Let it Be
· 8 min
-
Again
· 3 min
-
Turn! Turn! Turn! (To Everything There is a Season)
· 5 min
-
Unbelievable
· 5 min
-
Born to Run
· 3 min
-
Hurt So Good
· 8 min
-
Money For Nothing
· 3 min
-
Nothing's Gonna Stop Us Now
· 7 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": 1873,
"albumId": 178,
"artistId": 63,
"title": "Please Mr Postman",
"slug": "please-mr-postman-1873",
"trackNumber": 5,
"durationSeconds": 231,
"isExplicit": false,
"playCount": 39240302,
"createdAt": "2024-01-11T21:03:19.572Z"
},
{
"id": 1874,
"albumId": 178,
"artistId": 63,
"title": "Every Breath You Take",
"slug": "every-breath-you-take-1874",
"trackNumber": 6,
"durationSeconds": 423,
"isExplicit": true,
"playCount": 40970406,
"createdAt": "2025-04-02T20:23:31.285Z"
},
{
"id": 1875,
"albumId": 178,
"artistId": 63,
"title": "All My Lovin' (You're Never Gonna Get It)",
"slug": "all-my-lovin-youre-never-gonna-get-it-1875",
"trackNumber": 7,
"durationSeconds": 231,
"isExplicit": false,
"playCount": 24184311,
"createdAt": "2024-05-28T23:28:32.263Z"
}
],
"meta": {
"page": 79,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=79&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=80&limit=24",
"prev": "/api/v1/songs?page=78&limit=24"
}
}