songs
songs
Page 31 of 125.
Overview
-
My Life
· 3 min
-
Maggie May
· 2 min
-
When a Man Loves a Woman
· 6 min
-
Won't Get Fooled Again
· 3 min
-
All Shook Up
· 5 min
-
I'm Looking Over a Four Leaf Clover
· 2 min
-
Whip It
· 7 min
-
Yakety Yak
· 5 min
-
You Light Up My Life
· 3 min
-
Rag Doll
· 3 min
-
I Can't Help Myself (Sugar Pie, Honey Bunch)
· 5 min
-
Baker Street
· 5 min
-
How Deep is Your Love?
· 3 min
-
We Will Rock You
· 3 min
-
Say Say Say
· 6 min
-
Makin' Whoopee
· 5 min
-
Music
· 5 min
-
The Boy is Mine
· 5 min
-
The Sounds of Silence
· 3 min
-
Strawberry Fields Forever
· 7 min
-
That Old Black Magic
· 6 min
-
Born to Run
· 5 min
-
Dizzy
· 6 min
-
This Ole House
· 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": 721,
"albumId": 67,
"artistId": 27,
"title": "My Life",
"slug": "my-life-721",
"trackNumber": 4,
"durationSeconds": 206,
"isExplicit": false,
"playCount": 27217304,
"createdAt": "2025-10-18T15:43:52.631Z"
},
{
"id": 722,
"albumId": 67,
"artistId": 27,
"title": "Maggie May",
"slug": "maggie-may-722",
"trackNumber": 5,
"durationSeconds": 134,
"isExplicit": false,
"playCount": 30893303,
"createdAt": "2022-03-27T06:41:58.254Z"
},
{
"id": 723,
"albumId": 67,
"artistId": 27,
"title": "When a Man Loves a Woman",
"slug": "when-a-man-loves-a-woman-723",
"trackNumber": 6,
"durationSeconds": 368,
"isExplicit": false,
"playCount": 1761097,
"createdAt": "2024-08-18T10:45:50.467Z"
}
],
"meta": {
"page": 31,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=31&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=32&limit=24",
"prev": "/api/v1/songs?page=30&limit=24"
}
}