songs
songs
Page 57 of 125.
Overview
-
Ain't No Sunshine
· 6 min
-
In the End
· 6 min
-
Good Vibrations
· 8 min
-
I Want to Know What Love Is
· 4 min
-
Great Balls of Fire
· 4 min
-
Don't Be Cruel
· 2 min
-
Are You Lonesome Tonight?
· 3 min
-
A Whiter Shade of Pale
· 8 min
-
Before The Next Teardrop Falls
· 6 min
-
Wichita Lineman
· 6 min
-
Ray of Light
· 5 min
-
I'm Looking Over a Four Leaf Clover
· 2 min
-
This Diamond Ring
· 4 min
-
Breathe
· 7 min
-
Upside Down
· 4 min
-
Sugar Shack
· 4 min
-
Let's Get it On
· 7 min
-
Thriller
· 7 min
-
Strawberry Fields Forever
· 6 min
-
Wake Me Up Before You Go Go
· 3 min
-
Someday
· 5 min
-
Working My Way Back to You
· 6 min
-
Against All Odds (Take a Look At Me Now)
· 6 min
-
I Fall to Pieces
· 3 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": 1345,
"albumId": 127,
"artistId": 47,
"title": "Ain't No Sunshine",
"slug": "aint-no-sunshine-1345",
"trackNumber": 4,
"durationSeconds": 353,
"isExplicit": false,
"playCount": 41630372,
"createdAt": "2026-03-02T12:18:34.546Z"
},
{
"id": 1346,
"albumId": 127,
"artistId": 47,
"title": "In the End",
"slug": "in-the-end-1346",
"trackNumber": 5,
"durationSeconds": 356,
"isExplicit": true,
"playCount": 13322212,
"createdAt": "2022-10-12T00:17:23.040Z"
},
{
"id": 1347,
"albumId": 127,
"artistId": 47,
"title": "Good Vibrations",
"slug": "good-vibrations-1347",
"trackNumber": 6,
"durationSeconds": 468,
"isExplicit": false,
"playCount": 43230262,
"createdAt": "2022-06-10T01:18:29.528Z"
}
],
"meta": {
"page": 57,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=57&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=58&limit=24",
"prev": "/api/v1/songs?page=56&limit=24"
}
}