songs
songs
Page 109 of 125.
Overview
-
The Hustle
· 4 min
-
Drop it Like It's Hot
· 6 min
-
You Light Up My Life
· 4 min
-
Tiger Rag
· 5 min
-
Because of You
· 5 min
-
Something
· 3 min
-
Please Mr Postman
· 5 min
-
Fame
· 5 min
-
Fallin'
· 7 min
-
Bye, Bye, Bye
· 5 min
-
Beat It
· 7 min
-
Third Man Theme
· 7 min
-
Black Velvet
· 6 min
-
Straight Up
· 7 min
-
Stars & Stripes Forever
· 4 min
-
Singing The Blues
· 5 min
-
Louie Louie
· 2 min
-
Blurred Lines
· 8 min
-
E.T.
· 4 min
-
Because I Love You (The Postman Song)
· 2 min
-
One Sweet Day
· 7 min
-
Na Na Hey Hey (Kiss Him Goodbye)
· 5 min
-
Manana (Is Soon Enough For Me)
· 6 min
-
Too Close
· 7 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": 2593,
"albumId": 246,
"artistId": 86,
"title": "The Hustle",
"slug": "the-hustle-2593",
"trackNumber": 8,
"durationSeconds": 259,
"isExplicit": false,
"playCount": 2413351,
"createdAt": "2025-04-12T23:52:14.029Z"
},
{
"id": 2594,
"albumId": 246,
"artistId": 86,
"title": "Drop it Like It's Hot",
"slug": "drop-it-like-its-hot-2594",
"trackNumber": 9,
"durationSeconds": 379,
"isExplicit": false,
"playCount": 29034471,
"createdAt": "2021-11-04T16:43:44.571Z"
},
{
"id": 2595,
"albumId": 247,
"artistId": 87,
"title": "You Light Up My Life",
"slug": "you-light-up-my-life-2595",
"trackNumber": 1,
"durationSeconds": 233,
"isExplicit": false,
"playCount": 37636666,
"createdAt": "2025-01-04T23:33:50.237Z"
}
],
"meta": {
"page": 109,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=109&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=110&limit=24",
"prev": "/api/v1/songs?page=108&limit=24"
}
}