songs
songs
Page 85 of 125.
Overview
-
Walk This Way
· 4 min
-
Rags to Riches
· 3 min
-
The Glow-Worm
· 3 min
-
Let's Stay Together
· 4 min
-
I Fall to Pieces
· 8 min
-
Give Me Everything
· 6 min
-
Ode To Billie Joe
· 2 min
-
I Will Follow Him
· 6 min
-
One O'Clock Jump
· 4 min
-
Three Coins in the Fountain
· 6 min
-
Twist & Shout
· 6 min
-
Billie Jean
· 5 min
-
No One
· 2 min
-
I Just Called to Say I Love You
· 2 min
-
Beautiful Day
· 8 min
-
The Sweet Escape
· 5 min
-
Abracadabra
· 6 min
-
Superstar
· 4 min
-
You Light Up My Life
· 2 min
-
Without Me
· 7 min
-
Wichita Lineman
· 6 min
-
It Had to Be You
· 4 min
-
Streets of Philadelphia
· 5 min
-
Walk This Way
· 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": 2017,
"albumId": 190,
"artistId": 68,
"title": "Walk This Way",
"slug": "walk-this-way-2017",
"trackNumber": 10,
"durationSeconds": 268,
"isExplicit": false,
"playCount": 32645090,
"createdAt": "2023-12-26T18:28:56.570Z"
},
{
"id": 2018,
"albumId": 190,
"artistId": 68,
"title": "Rags to Riches",
"slug": "rags-to-riches-2018",
"trackNumber": 11,
"durationSeconds": 180,
"isExplicit": false,
"playCount": 20361168,
"createdAt": "2022-09-24T01:11:21.090Z"
},
{
"id": 2019,
"albumId": 190,
"artistId": 68,
"title": "The Glow-Worm",
"slug": "the-glow-worm-2019",
"trackNumber": 12,
"durationSeconds": 176,
"isExplicit": false,
"playCount": 37208354,
"createdAt": "2025-02-08T02:21:04.428Z"
}
],
"meta": {
"page": 85,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=85&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=86&limit=24",
"prev": "/api/v1/songs?page=84&limit=24"
}
}