songs
songs
Page 11 of 125.
Overview
-
Get Back
· 4 min
-
Something
· 3 min
-
Moonlight Cocktail
· 2 min
-
Do You Love Me?
· 5 min
-
Don't Leave Me This Way
· 2 min
-
Grease
· 6 min
-
Whoomp! (There it Is)
· 6 min
-
Yakety Yak
· 7 min
-
You Belong With Me
· 7 min
-
Gangsta's Paradise
· 2 min
-
The Way You Move
· 6 min
-
Over There
· 4 min
-
Another One Bites the Dust
· 3 min
-
People
· 5 min
-
Let Me Love You
· 4 min
-
That's the Way (I Like It)
· 7 min
-
Smoke On the Water
· 7 min
-
One Sweet Day
· 3 min
-
Mood Indigo
· 6 min
-
Runaround Sue
· 6 min
-
Purple Haze
· 3 min
-
Apologize
· 5 min
-
Walk Like a Man
· 7 min
-
Kansas City
· 2 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": 241,
"albumId": 23,
"artistId": 9,
"title": "Get Back",
"slug": "get-back-241",
"trackNumber": 1,
"durationSeconds": 256,
"isExplicit": false,
"playCount": 30258124,
"createdAt": "2021-07-31T23:44:33.255Z"
},
{
"id": 242,
"albumId": 23,
"artistId": 9,
"title": "Something",
"slug": "something-242",
"trackNumber": 2,
"durationSeconds": 201,
"isExplicit": false,
"playCount": 15450976,
"createdAt": "2025-06-08T08:58:48.533Z"
},
{
"id": 243,
"albumId": 23,
"artistId": 9,
"title": "Moonlight Cocktail",
"slug": "moonlight-cocktail-243",
"trackNumber": 3,
"durationSeconds": 127,
"isExplicit": false,
"playCount": 35637348,
"createdAt": "2024-07-04T09:22:02.554Z"
}
],
"meta": {
"page": 11,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=11&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=12&limit=24",
"prev": "/api/v1/songs?page=10&limit=24"
}
}