songs
songs
Page 52 of 125.
Overview
-
You Belong With Me
· 5 min
-
Disturbia
· 2 min
-
Rehab
· 5 min
-
Yellow Rose of Texas
· 8 min
-
What'd I Say
· 2 min
-
TSOP (The Sound of Philadelphia)
· 5 min
-
Freak Me
· 8 min
-
Be My Baby
· 4 min
-
Rapture
· 7 min
-
Disco Lady
· 4 min
-
King of the Road
· 4 min
-
Make Love to Me
· 2 min
-
Philadelphia Freedom
· 2 min
-
Bennie & the Jets
· 4 min
-
Hurt So Good
· 2 min
-
Do Wah Diddy Diddy
· 4 min
-
That'll Be the Day
· 6 min
-
Nothing's Gonna Stop Us Now
· 7 min
-
Queen of Hearts
· 6 min
-
Take Me Home, Country Roads
· 6 min
-
Mrs Brown You've Got a Lovely Daughter
· 2 min
-
Make Love to Me
· 7 min
-
California Girls
· 5 min
-
Summer in the City
· 2 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": 1225,
"albumId": 115,
"artistId": 43,
"title": "You Belong With Me",
"slug": "you-belong-with-me-1225",
"trackNumber": 13,
"durationSeconds": 286,
"isExplicit": true,
"playCount": 239608,
"createdAt": "2025-06-25T15:05:46.943Z"
},
{
"id": 1226,
"albumId": 115,
"artistId": 43,
"title": "Disturbia",
"slug": "disturbia-1226",
"trackNumber": 14,
"durationSeconds": 136,
"isExplicit": false,
"playCount": 25600285,
"createdAt": "2025-12-04T05:14:49.354Z"
},
{
"id": 1227,
"albumId": 116,
"artistId": 43,
"title": "Rehab",
"slug": "rehab-1227",
"trackNumber": 1,
"durationSeconds": 282,
"isExplicit": false,
"playCount": 43033225,
"createdAt": "2023-03-27T13:39:33.654Z"
}
],
"meta": {
"page": 52,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=52&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=53&limit=24",
"prev": "/api/v1/songs?page=51&limit=24"
}
}