songs
songs
Page 70 of 125.
Overview
-
Midnight Train to Georgia
· 2 min
-
Love Me Do
· 6 min
-
Sweet Georgia Brown
· 5 min
-
School's Out
· 2 min
-
Baby One More Time
· 5 min
-
One of These Nights
· 2 min
-
My Prayer
· 4 min
-
Take Me Home, Country Roads
· 7 min
-
Magic Carpet Ride
· 4 min
-
I Write the Songs
· 6 min
-
Mona Lisa
· 6 min
-
All My Lovin' (You're Never Gonna Get It)
· 8 min
-
Tossing & Turning
· 5 min
-
Black Velvet
· 6 min
-
Can't Get Enough of Your Love, Babe
· 3 min
-
Love Will Keep Us Together
· 2 min
-
Frankenstein
· 4 min
-
Bridge Over Troubled Water
· 7 min
-
Cathy's Clown
· 6 min
-
Where Did Our Love Go
· 7 min
-
Ain't No Sunshine
· 4 min
-
Since U Been Gone
· 6 min
-
April Showers
· 4 min
-
Wishing Well
· 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": 1657,
"albumId": 158,
"artistId": 55,
"title": "Midnight Train to Georgia",
"slug": "midnight-train-to-georgia-1657",
"trackNumber": 13,
"durationSeconds": 140,
"isExplicit": false,
"playCount": 13491197,
"createdAt": "2023-01-01T03:46:11.418Z"
},
{
"id": 1658,
"albumId": 159,
"artistId": 55,
"title": "Love Me Do",
"slug": "love-me-do-1658",
"trackNumber": 1,
"durationSeconds": 385,
"isExplicit": false,
"playCount": 45131316,
"createdAt": "2022-03-09T01:17:33.430Z"
},
{
"id": 1659,
"albumId": 159,
"artistId": 55,
"title": "Sweet Georgia Brown",
"slug": "sweet-georgia-brown-1659",
"trackNumber": 2,
"durationSeconds": 282,
"isExplicit": false,
"playCount": 10110447,
"createdAt": "2025-06-26T19:53:56.438Z"
}
],
"meta": {
"page": 70,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=70&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=71&limit=24",
"prev": "/api/v1/songs?page=69&limit=24"
}
}