songs
songs
Page 60 of 125.
Overview
-
Spinning Wheel
· 5 min
-
Miss You Much
· 3 min
-
On My Own
· 2 min
-
You Light Up My Life
· 3 min
-
(Put Another Nickel In) Music! Music! Music!
· 5 min
-
This Diamond Ring
· 3 min
-
Stand By Me
· 2 min
-
War
· 4 min
-
Toxic
· 6 min
-
Royals
· 4 min
-
Everybody Loves Somebody
· 4 min
-
Layla
· 4 min
-
Kiss Me
· 2 min
-
Purple Haze
· 3 min
-
People Got to Be Free
· 5 min
-
Freebird
· 7 min
-
Incense & Peppermints
· 6 min
-
Umbrella
· 3 min
-
Grease
· 8 min
-
Wild Thing
· 5 min
-
Bad, Bad Leroy Brown
· 7 min
-
Joy to the World
· 4 min
-
Freak Me
· 7 min
-
White Rabbit
· 6 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": 1417,
"albumId": 134,
"artistId": 49,
"title": "Spinning Wheel",
"slug": "spinning-wheel-1417",
"trackNumber": 7,
"durationSeconds": 313,
"isExplicit": false,
"playCount": 17624442,
"createdAt": "2026-03-14T06:24:22.762Z"
},
{
"id": 1418,
"albumId": 134,
"artistId": 49,
"title": "Miss You Much",
"slug": "miss-you-much-1418",
"trackNumber": 8,
"durationSeconds": 206,
"isExplicit": false,
"playCount": 27346432,
"createdAt": "2023-03-25T17:32:42.866Z"
},
{
"id": 1419,
"albumId": 134,
"artistId": 49,
"title": "On My Own",
"slug": "on-my-own-1419",
"trackNumber": 9,
"durationSeconds": 98,
"isExplicit": false,
"playCount": 30744443,
"createdAt": "2022-07-25T09:33:49.383Z"
}
],
"meta": {
"page": 60,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=60&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=61&limit=24",
"prev": "/api/v1/songs?page=59&limit=24"
}
}