songs
songs
Page 122 of 125.
Overview
-
Happy Together
· 7 min
-
Dardanella
· 6 min
-
Somethin' Stupid
· 2 min
-
Yesterday
· 2 min
-
(Put Another Nickel In) Music! Music! Music!
· 6 min
-
Little Things Mean a Lot
· 7 min
-
ABC
· 4 min
-
I'm So Lonesome I Could Cry
· 7 min
-
Wooly Bully
· 6 min
-
Too Close
· 6 min
-
Lights
· 4 min
-
Gives You Hell
· 2 min
-
Bitter Sweet Symphony
· 4 min
-
Crazy Little Thing Called Love
· 4 min
-
My Man
· 5 min
-
Right Back Where We Started From
· 5 min
-
Bridge Over Troubled Water
· 5 min
-
Mr Big Stuff
· 7 min
-
You Send Me
· 5 min
-
Up Around the Bend
· 5 min
-
Take The 'A' Train
· 4 min
-
I Fall to Pieces
· 3 min
-
All I Wanna Do
· 6 min
-
Footloose
· 5 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": 2905,
"albumId": 276,
"artistId": 97,
"title": "Happy Together",
"slug": "happy-together-2905",
"trackNumber": 5,
"durationSeconds": 429,
"isExplicit": true,
"playCount": 10430680,
"createdAt": "2023-09-16T22:01:20.252Z"
},
{
"id": 2906,
"albumId": 276,
"artistId": 97,
"title": "Dardanella",
"slug": "dardanella-2906",
"trackNumber": 6,
"durationSeconds": 388,
"isExplicit": false,
"playCount": 23715965,
"createdAt": "2026-01-29T22:56:12.694Z"
},
{
"id": 2907,
"albumId": 276,
"artistId": 97,
"title": "Somethin' Stupid",
"slug": "somethin-stupid-2907",
"trackNumber": 7,
"durationSeconds": 148,
"isExplicit": false,
"playCount": 27103309,
"createdAt": "2026-04-18T23:13:39.270Z"
}
],
"meta": {
"page": 122,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=122&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=123&limit=24",
"prev": "/api/v1/songs?page=121&limit=24"
}
}