songs
songs
Page 107 of 125.
Overview
-
Dancing Queen
· 6 min
-
How Much is That Doggy in the Window?
· 7 min
-
Colors of the Wind
· 5 min
-
Long Cool Woman in a Black Dress
· 6 min
-
Morning Train (Nine to Five)
· 7 min
-
Rich Girl
· 5 min
-
1999
· 7 min
-
We Are Young
· 5 min
-
Hey Ya!
· 6 min
-
Rock the Boat
· 3 min
-
That'll Be the Day
· 3 min
-
Be Bop a Lula
· 3 min
-
Green Tambourine
· 7 min
-
Mood Indigo
· 4 min
-
I Can See Clearly Now
· 8 min
-
Truly Madly Deeply
· 5 min
-
We Built This City
· 3 min
-
Everybody Wants to Rule the World
· 6 min
-
Smoke On the Water
· 5 min
-
Live & Let Die
· 8 min
-
Sunshine of Your Love
· 7 min
-
Freebird
· 2 min
-
Livin' La Vida Loca
· 3 min
-
Yakety Yak
· 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": 2545,
"albumId": 241,
"artistId": 85,
"title": "Dancing Queen",
"slug": "dancing-queen-2545",
"trackNumber": 4,
"durationSeconds": 340,
"isExplicit": false,
"playCount": 24573085,
"createdAt": "2025-01-30T01:40:11.450Z"
},
{
"id": 2546,
"albumId": 241,
"artistId": 85,
"title": "How Much is That Doggy in the Window?",
"slug": "how-much-is-that-doggy-in-the-window-2546",
"trackNumber": 5,
"durationSeconds": 410,
"isExplicit": false,
"playCount": 39650458,
"createdAt": "2025-06-25T14:40:42.614Z"
},
{
"id": 2547,
"albumId": 241,
"artistId": 85,
"title": "Colors of the Wind",
"slug": "colors-of-the-wind-2547",
"trackNumber": 6,
"durationSeconds": 320,
"isExplicit": false,
"playCount": 2741417,
"createdAt": "2024-12-03T11:45:00.093Z"
}
],
"meta": {
"page": 107,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=107&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=108&limit=24",
"prev": "/api/v1/songs?page=106&limit=24"
}
}