songs
songs
Page 53 of 125.
Overview
-
All I Have to Do is Dream
· 5 min
-
Georgy Girl
· 6 min
-
Papa Was a Rolling Stone
· 7 min
-
Don't Let the Stars Get in Your Eyes
· 4 min
-
We Found Love
· 4 min
-
Change the World
· 2 min
-
Miss You
· 8 min
-
I Can't Get Next to You
· 6 min
-
9 to 5
· 4 min
-
Begin the Beguine
· 5 min
-
Check On It
· 2 min
-
Runaway
· 4 min
-
Some Enchanted Evening
· 6 min
-
A Boy Named Sue
· 4 min
-
I Just Wanna Be Your Everything
· 4 min
-
Cat's in the Cradle
· 5 min
-
Wichita Lineman
· 6 min
-
Wichita Lineman
· 2 min
-
Jack & Diane
· 6 min
-
Me & Bobby McGee
· 2 min
-
Beauty & the Beast
· 7 min
-
Live & Let Die
· 2 min
-
Light My Fire
· 7 min
-
Bad Romance
· 8 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": 1249,
"albumId": 118,
"artistId": 44,
"title": "All I Have to Do is Dream",
"slug": "all-i-have-to-do-is-dream-1249",
"trackNumber": 1,
"durationSeconds": 301,
"isExplicit": false,
"playCount": 4780703,
"createdAt": "2026-02-14T16:35:31.331Z"
},
{
"id": 1250,
"albumId": 118,
"artistId": 44,
"title": "Georgy Girl",
"slug": "georgy-girl-1250",
"trackNumber": 2,
"durationSeconds": 335,
"isExplicit": false,
"playCount": 47483259,
"createdAt": "2023-03-20T10:17:03.913Z"
},
{
"id": 1251,
"albumId": 118,
"artistId": 44,
"title": "Papa Was a Rolling Stone",
"slug": "papa-was-a-rolling-stone-1251",
"trackNumber": 3,
"durationSeconds": 443,
"isExplicit": false,
"playCount": 33900641,
"createdAt": "2023-03-23T22:03:42.650Z"
}
],
"meta": {
"page": 53,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=53&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=54&limit=24",
"prev": "/api/v1/songs?page=52&limit=24"
}
}