songs
songs
Page 33 of 125.
Overview
-
I Can't Help Myself (Sugar Pie, Honey Bunch)
· 5 min
-
We Are Young
· 3 min
-
Alone
· 5 min
-
How Much is That Doggy in the Window?
· 5 min
-
Toxic
· 3 min
-
Thank You (Falettinme be Mice Elf Again)
· 2 min
-
Winchester Cathedral
· 6 min
-
Wishing Well
· 6 min
-
Silly Love Songs
· 7 min
-
Help Me, Rhonda
· 7 min
-
Mama Told Me Not to Come
· 7 min
-
Wake Up Little Susie
· 4 min
-
Whoomp! (There it Is)
· 5 min
-
December 1963 (Oh What a Night)
· 6 min
-
Cry
· 5 min
-
I Shot the Sheriff
· 6 min
-
Creep
· 2 min
-
Rum & Coca-Cola
· 3 min
-
Instant Karma
· 4 min
-
Honky Tonk
· 7 min
-
Freak Me
· 2 min
-
Piano Man
· 5 min
-
Make it With You
· 4 min
-
Kokomo
· 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": 769,
"albumId": 72,
"artistId": 28,
"title": "I Can't Help Myself (Sugar Pie, Honey Bunch)",
"slug": "i-cant-help-myself-sugar-pie-honey-bunch-769",
"trackNumber": 2,
"durationSeconds": 312,
"isExplicit": false,
"playCount": 28187397,
"createdAt": "2025-10-20T15:52:25.990Z"
},
{
"id": 770,
"albumId": 72,
"artistId": 28,
"title": "We Are Young",
"slug": "we-are-young-770",
"trackNumber": 3,
"durationSeconds": 159,
"isExplicit": true,
"playCount": 11447799,
"createdAt": "2023-07-09T15:16:25.576Z"
},
{
"id": 771,
"albumId": 72,
"artistId": 28,
"title": "Alone",
"slug": "alone-771",
"trackNumber": 4,
"durationSeconds": 287,
"isExplicit": false,
"playCount": 18252655,
"createdAt": "2021-10-22T09:45:54.331Z"
}
],
"meta": {
"page": 33,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=33&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=34&limit=24",
"prev": "/api/v1/songs?page=32&limit=24"
}
}