songs
songs
Page 68 of 125.
Overview
-
Mood Indigo
· 2 min
-
On My Own
· 2 min
-
Take The 'A' Train
· 7 min
-
Don't Go Breaking My Heart
· 7 min
-
What'd I Say
· 5 min
-
I Feel For You
· 7 min
-
You Were Meant for Me
· 4 min
-
Tom Dooley
· 6 min
-
Queen of Hearts
· 5 min
-
Papa Was a Rolling Stone
· 2 min
-
Pony Time
· 3 min
-
Theme From 'Greatest American Hero' (Believe It Or Not)
· 6 min
-
Gypsies, Tramps & Thieves
· 4 min
-
Dizzy
· 7 min
-
Sexyback
· 4 min
-
Grenade
· 3 min
-
The Way You Move
· 5 min
-
Will It Go Round In Circles
· 5 min
-
Kiss From a Rose
· 3 min
-
Please Mr Postman
· 2 min
-
Boogie Woogie Bugle Boy
· 4 min
-
Breathe
· 2 min
-
Dancing in the Dark
· 6 min
-
Wanted
· 7 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": 1609,
"albumId": 154,
"artistId": 54,
"title": "Mood Indigo",
"slug": "mood-indigo-1609",
"trackNumber": 6,
"durationSeconds": 133,
"isExplicit": false,
"playCount": 23039554,
"createdAt": "2025-07-30T01:46:06.377Z"
},
{
"id": 1610,
"albumId": 154,
"artistId": 54,
"title": "On My Own",
"slug": "on-my-own-1610",
"trackNumber": 7,
"durationSeconds": 140,
"isExplicit": false,
"playCount": 46565865,
"createdAt": "2026-01-23T02:02:12.402Z"
},
{
"id": 1611,
"albumId": 154,
"artistId": 54,
"title": "Take The 'A' Train",
"slug": "take-the-a-train-1611",
"trackNumber": 8,
"durationSeconds": 430,
"isExplicit": true,
"playCount": 17049689,
"createdAt": "2025-07-10T02:56:08.968Z"
}
],
"meta": {
"page": 68,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=68&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=69&limit=24",
"prev": "/api/v1/songs?page=67&limit=24"
}
}