songs
songs
Page 89 of 125.
Overview
-
You Always Hurt the One You Love
· 8 min
-
Pop Muzik
· 4 min
-
In the Year 2525 (Exordium & Terminus)
· 3 min
-
Cathy's Clown
· 2 min
-
Hey Paula
· 5 min
-
Be My Love
· 5 min
-
Cheek to Cheek
· 7 min
-
Freebird
· 8 min
-
Colors of the Wind
· 5 min
-
All I Wanna Do
· 7 min
-
Down
· 4 min
-
Where Did Our Love Go
· 6 min
-
Blurred Lines
· 4 min
-
Candle in the Wind '97
· 7 min
-
Heart of Glass
· 3 min
-
Somebody to Love
· 2 min
-
Shout
· 6 min
-
Little Darlin'
· 8 min
-
Harbour Lights
· 2 min
-
Another Brick in the Wall (part 2)
· 7 min
-
Green River
· 3 min
-
Blueberry Hill
· 5 min
-
Every Little Thing She Does is Magic
· 3 min
-
My Girl
· 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": 2113,
"albumId": 199,
"artistId": 70,
"title": "You Always Hurt the One You Love",
"slug": "you-always-hurt-the-one-you-love-2113",
"trackNumber": 2,
"durationSeconds": 452,
"isExplicit": false,
"playCount": 1561736,
"createdAt": "2023-07-21T14:04:20.550Z"
},
{
"id": 2114,
"albumId": 199,
"artistId": 70,
"title": "Pop Muzik",
"slug": "pop-muzik-2114",
"trackNumber": 3,
"durationSeconds": 269,
"isExplicit": false,
"playCount": 36701157,
"createdAt": "2023-01-11T04:57:37.887Z"
},
{
"id": 2115,
"albumId": 199,
"artistId": 70,
"title": "In the Year 2525 (Exordium & Terminus)",
"slug": "in-the-year-2525-exordium-terminus-2115",
"trackNumber": 4,
"durationSeconds": 159,
"isExplicit": false,
"playCount": 11383020,
"createdAt": "2022-03-18T02:51:40.315Z"
}
],
"meta": {
"page": 89,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=89&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=90&limit=24",
"prev": "/api/v1/songs?page=88&limit=24"
}
}