songs
songs
Page 105 of 125.
Overview
-
Help Me, Rhonda
· 4 min
-
Walk Don't Run
· 3 min
-
Le Freak
· 8 min
-
The Way We Were
· 2 min
-
Whatcha Say
· 7 min
-
Time After Time
· 5 min
-
Aquarius/Let The Sunshine In
· 7 min
-
Being With You
· 7 min
-
(I've Had) the Time of My Life
· 4 min
-
It's Still Rock 'n' Roll to Me
· 3 min
-
Stagger Lee
· 5 min
-
Yakety Yak
· 2 min
-
Born to Run
· 3 min
-
I'll be seeing you
· 3 min
-
Ain't No Sunshine
· 5 min
-
Cat's in the Cradle
· 7 min
-
Me & Mrs Jones
· 6 min
-
Rock Your Baby
· 7 min
-
Drop it Like It's Hot
· 6 min
-
Hollaback Girl
· 3 min
-
For What It's Worth (Stop, Hey What's That Sound)
· 5 min
-
Ode To Billie Joe
· 8 min
-
Love Train
· 5 min
-
On My Own
· 8 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": 2497,
"albumId": 236,
"artistId": 84,
"title": "Help Me, Rhonda",
"slug": "help-me-rhonda-2497",
"trackNumber": 7,
"durationSeconds": 219,
"isExplicit": false,
"playCount": 39321496,
"createdAt": "2023-04-24T04:23:14.146Z"
},
{
"id": 2498,
"albumId": 236,
"artistId": 84,
"title": "Walk Don't Run",
"slug": "walk-dont-run-2498",
"trackNumber": 8,
"durationSeconds": 178,
"isExplicit": false,
"playCount": 29347528,
"createdAt": "2024-01-20T21:59:25.351Z"
},
{
"id": 2499,
"albumId": 236,
"artistId": 84,
"title": "Le Freak",
"slug": "le-freak-2499",
"trackNumber": 9,
"durationSeconds": 473,
"isExplicit": false,
"playCount": 35072260,
"createdAt": "2025-04-25T02:28:52.249Z"
}
],
"meta": {
"page": 105,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=105&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=106&limit=24",
"prev": "/api/v1/songs?page=104&limit=24"
}
}