songs
songs
Page 119 of 125.
Overview
-
Firework
· 5 min
-
California Girls
· 2 min
-
(I've Got a Gal In) Kalamazoo
· 5 min
-
Need You Tonight
· 4 min
-
(You Keep Me) Hangin' On
· 3 min
-
Dancing Queen
· 6 min
-
Airplanes
· 8 min
-
Georgy Girl
· 2 min
-
Penny Lane
· 5 min
-
Hair
· 4 min
-
Red Red Wine
· 5 min
-
Riders On the Storm
· 3 min
-
(They Long to Be) Close to You
· 8 min
-
To Sir, with Love
· 7 min
-
(I Can't Get No) Satisfaction
· 2 min
-
U Got it Bad
· 4 min
-
Baby Baby
· 7 min
-
I Can't Help Myself (Sugar Pie, Honey Bunch)
· 6 min
-
Cherish
· 3 min
-
Ghostbusters
· 8 min
-
T For Texas (Blue Yodel No 1)
· 5 min
-
The End of the World
· 7 min
-
Kiss & Say Goodbye
· 4 min
-
Joy to the World
· 4 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": 2833,
"albumId": 269,
"artistId": 94,
"title": "Firework",
"slug": "firework-2833",
"trackNumber": 4,
"durationSeconds": 277,
"isExplicit": false,
"playCount": 1422001,
"createdAt": "2025-07-25T23:19:59.689Z"
},
{
"id": 2834,
"albumId": 269,
"artistId": 94,
"title": "California Girls",
"slug": "california-girls-2834",
"trackNumber": 5,
"durationSeconds": 109,
"isExplicit": false,
"playCount": 47232932,
"createdAt": "2024-04-02T21:13:28.751Z"
},
{
"id": 2835,
"albumId": 269,
"artistId": 94,
"title": "(I've Got a Gal In) Kalamazoo",
"slug": "ive-got-a-gal-in-kalamazoo-2835",
"trackNumber": 6,
"durationSeconds": 271,
"isExplicit": false,
"playCount": 38238622,
"createdAt": "2022-08-25T04:09:42.580Z"
}
],
"meta": {
"page": 119,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=119&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=120&limit=24",
"prev": "/api/v1/songs?page=118&limit=24"
}
}