songs
songs
Page 73 of 125.
Overview
-
Loving You
· 7 min
-
Eye of the Tiger
· 7 min
-
Love In This Club
· 4 min
-
Just Dance
· 3 min
-
Chances Are
· 3 min
-
End of the Road
· 7 min
-
Waterfalls
· 5 min
-
Lose Yourself
· 2 min
-
I Can't Stop Loving You
· 5 min
-
Love to Love You Baby
· 3 min
-
Bitter Sweet Symphony
· 4 min
-
Sugar Sugar
· 3 min
-
Hey Baby
· 8 min
-
Afternoon Delight
· 2 min
-
Thriller
· 4 min
-
Hot Stuff
· 7 min
-
Midnight Train to Georgia
· 2 min
-
(Sexual) Healing
· 4 min
-
I Only Have Eyes For You
· 4 min
-
Venus
· 8 min
-
It's Still Rock 'n' Roll to Me
· 2 min
-
Stormy Weather (Keeps Rainin' All the Time)
· 7 min
-
I Will Follow Him
· 3 min
-
St Louis Blues
· 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": 1729,
"albumId": 165,
"artistId": 57,
"title": "Loving You",
"slug": "loving-you-1729",
"trackNumber": 5,
"durationSeconds": 411,
"isExplicit": false,
"playCount": 1439997,
"createdAt": "2023-07-23T23:09:39.550Z"
},
{
"id": 1730,
"albumId": 165,
"artistId": 57,
"title": "Eye of the Tiger",
"slug": "eye-of-the-tiger-1730",
"trackNumber": 6,
"durationSeconds": 394,
"isExplicit": false,
"playCount": 13530679,
"createdAt": "2026-01-05T07:36:56.602Z"
},
{
"id": 1731,
"albumId": 165,
"artistId": 57,
"title": "Love In This Club",
"slug": "love-in-this-club-1731",
"trackNumber": 7,
"durationSeconds": 244,
"isExplicit": false,
"playCount": 6596006,
"createdAt": "2022-02-15T16:01:13.646Z"
}
],
"meta": {
"page": 73,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=73&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=74&limit=24",
"prev": "/api/v1/songs?page=72&limit=24"
}
}