songs
songs
Page 36 of 125.
Overview
-
I Can't Stop Loving You
· 8 min
-
Smoke Gets in Your Eyes
· 4 min
-
How Much is That Doggy in the Window?
· 7 min
-
So Much in Love
· 2 min
-
The Boys of Summer
· 4 min
-
Peg o' My Heart
· 3 min
-
Stardust
· 4 min
-
Theme From 'Greatest American Hero' (Believe It Or Not)
· 6 min
-
How Will I Know
· 2 min
-
Private Eyes
· 6 min
-
There goes my baby
· 7 min
-
All My Lovin' (You're Never Gonna Get It)
· 4 min
-
Singing The Blues
· 4 min
-
Get Back
· 4 min
-
All Out of Love
· 5 min
-
Without You
· 8 min
-
Big Bad John
· 3 min
-
Lookin' Out My Back Door
· 4 min
-
Heart of Glass
· 7 min
-
This Diamond Ring
· 5 min
-
Whispering
· 4 min
-
Somebody That I Used to Know
· 5 min
-
Shout
· 5 min
-
Nights in White Satin
· 5 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": 841,
"albumId": 79,
"artistId": 32,
"title": "I Can't Stop Loving You",
"slug": "i-cant-stop-loving-you-841",
"trackNumber": 6,
"durationSeconds": 456,
"isExplicit": false,
"playCount": 15780971,
"createdAt": "2022-02-04T23:32:07.512Z"
},
{
"id": 842,
"albumId": 79,
"artistId": 32,
"title": "Smoke Gets in Your Eyes",
"slug": "smoke-gets-in-your-eyes-842",
"trackNumber": 7,
"durationSeconds": 249,
"isExplicit": false,
"playCount": 13057171,
"createdAt": "2021-09-17T20:11:12.455Z"
},
{
"id": 843,
"albumId": 80,
"artistId": 33,
"title": "How Much is That Doggy in the Window?",
"slug": "how-much-is-that-doggy-in-the-window-843",
"trackNumber": 1,
"durationSeconds": 414,
"isExplicit": false,
"playCount": 26537625,
"createdAt": "2025-09-02T08:36:22.196Z"
}
],
"meta": {
"page": 36,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=36&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=37&limit=24",
"prev": "/api/v1/songs?page=35&limit=24"
}
}