songs
songs
Page 94 of 125.
Overview
-
(Put Another Nickel In) Music! Music! Music!
· 8 min
-
Yesterday
· 4 min
-
Hollaback Girl
· 8 min
-
One O'Clock Jump
· 6 min
-
California Dreamin'
· 5 min
-
Change the World
· 7 min
-
Something
· 7 min
-
I Feel Fine
· 4 min
-
The Twist
· 4 min
-
Ballad of the Green Berets
· 8 min
-
Only The Lonely (Know The Way I Feel)
· 8 min
-
Wild Thing
· 3 min
-
Brandy (You're A Fine Girl)
· 4 min
-
Smoke Gets in Your Eyes
· 5 min
-
Yakety Yak
· 5 min
-
Tik-Toc
· 7 min
-
Kiss From a Rose
· 7 min
-
Strawberry Fields Forever
· 5 min
-
The Letter
· 8 min
-
Some Enchanted Evening
· 7 min
-
In the End
· 8 min
-
Eye of the Tiger
· 6 min
-
Groovin'
· 6 min
-
At Last
· 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": 2233,
"albumId": 210,
"artistId": 74,
"title": "(Put Another Nickel In) Music! Music! Music!",
"slug": "put-another-nickel-in-music-music-music-2233",
"trackNumber": 5,
"durationSeconds": 461,
"isExplicit": false,
"playCount": 21016547,
"createdAt": "2025-06-27T09:00:40.269Z"
},
{
"id": 2234,
"albumId": 210,
"artistId": 74,
"title": "Yesterday",
"slug": "yesterday-2234",
"trackNumber": 6,
"durationSeconds": 245,
"isExplicit": false,
"playCount": 26012235,
"createdAt": "2025-08-01T23:40:13.651Z"
},
{
"id": 2235,
"albumId": 211,
"artistId": 74,
"title": "Hollaback Girl",
"slug": "hollaback-girl-2235",
"trackNumber": 1,
"durationSeconds": 469,
"isExplicit": false,
"playCount": 42919072,
"createdAt": "2022-02-02T04:18:26.202Z"
}
],
"meta": {
"page": 94,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=94&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=95&limit=24",
"prev": "/api/v1/songs?page=93&limit=24"
}
}