songs
songs
Page 74 of 125.
Overview
-
Jack & Diane
· 4 min
-
Grease
· 7 min
-
Shake Down
· 7 min
-
My Eyes Adored You
· 4 min
-
That's Amore
· 4 min
-
I Shot the Sheriff
· 8 min
-
Let it Be
· 7 min
-
Tighten Up
· 6 min
-
Locked Out Of Heaven
· 3 min
-
American Woman
· 3 min
-
Stardust
· 7 min
-
Ballad of the Green Berets
· 8 min
-
Like a Virgin
· 7 min
-
Shop Around
· 6 min
-
How You Remind Me
· 6 min
-
Are You Lonesome Tonight?
· 6 min
-
Stand By Me
· 5 min
-
Fly Robin Fly
· 6 min
-
Sweet Child O' Mine
· 2 min
-
You're Beautiful
· 3 min
-
Lady Marmalade (Voulez-Vous Coucher Aver Moi Ce Soir?)
· 7 min
-
Let Me Call You Sweetheart
· 4 min
-
Grenade
· 2 min
-
I'm So Lonesome I Could Cry
· 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": 1753,
"albumId": 167,
"artistId": 58,
"title": "Jack & Diane",
"slug": "jack-diane-1753",
"trackNumber": 5,
"durationSeconds": 260,
"isExplicit": false,
"playCount": 7629946,
"createdAt": "2025-02-12T12:47:03.344Z"
},
{
"id": 1754,
"albumId": 167,
"artistId": 58,
"title": "Grease",
"slug": "grease-1754",
"trackNumber": 6,
"durationSeconds": 400,
"isExplicit": false,
"playCount": 45234631,
"createdAt": "2025-11-03T16:42:51.544Z"
},
{
"id": 1755,
"albumId": 167,
"artistId": 58,
"title": "Shake Down",
"slug": "shake-down-1755",
"trackNumber": 7,
"durationSeconds": 439,
"isExplicit": false,
"playCount": 3973378,
"createdAt": "2024-06-07T00:32:34.139Z"
}
],
"meta": {
"page": 74,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=74&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=75&limit=24",
"prev": "/api/v1/songs?page=73&limit=24"
}
}