songs
songs
Page 64 of 125.
Overview
-
This Diamond Ring
· 5 min
-
Love Me Tender
· 5 min
-
Let's Hear it For the Boy
· 4 min
-
Under the Bridge
· 6 min
-
Brother, Can You Spare a Dime?
· 6 min
-
Un-Break My Heart
· 4 min
-
Physical
· 6 min
-
Will It Go Round In Circles
· 2 min
-
One of Us
· 5 min
-
Blue Tango
· 7 min
-
That's What Friends Are For
· 5 min
-
Dancing in the Dark
· 2 min
-
Mister Sandman
· 8 min
-
Maybellene
· 6 min
-
Tennessee Waltz
· 6 min
-
Eight Days a Week
· 7 min
-
Papa Don't Preach
· 2 min
-
Candy Man
· 3 min
-
Let it Snow! Let it Snow! Let it Snow!
· 8 min
-
December 1963 (Oh What a Night)
· 3 min
-
After You've Gone
· 6 min
-
Sing, Sing, Sing (With A Swing)
· 6 min
-
Dizzy
· 7 min
-
Stronger
· 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": 1513,
"albumId": 144,
"artistId": 51,
"title": "This Diamond Ring",
"slug": "this-diamond-ring-1513",
"trackNumber": 14,
"durationSeconds": 310,
"isExplicit": false,
"playCount": 35863018,
"createdAt": "2024-07-11T13:33:12.406Z"
},
{
"id": 1514,
"albumId": 144,
"artistId": 51,
"title": "Love Me Tender",
"slug": "love-me-tender-1514",
"trackNumber": 15,
"durationSeconds": 302,
"isExplicit": false,
"playCount": 29264487,
"createdAt": "2024-03-20T09:10:53.996Z"
},
{
"id": 1515,
"albumId": 145,
"artistId": 52,
"title": "Let's Hear it For the Boy",
"slug": "lets-hear-it-for-the-boy-1515",
"trackNumber": 1,
"durationSeconds": 258,
"isExplicit": false,
"playCount": 3486686,
"createdAt": "2025-09-16T15:08:59.293Z"
}
],
"meta": {
"page": 64,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=64&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=65&limit=24",
"prev": "/api/v1/songs?page=63&limit=24"
}
}