songs
songs
Page 22 of 125.
Overview
-
Ring My Bell
· 3 min
-
Like a Prayer
· 7 min
-
I Gotta Feeling
· 2 min
-
96 Tears
· 8 min
-
ABC
· 3 min
-
Gold Digger
· 8 min
-
(I've Had) the Time of My Life
· 6 min
-
Ain't No Sunshine
· 3 min
-
Honky Tonk
· 2 min
-
Wake Me Up Before You Go Go
· 5 min
-
Arthur's Theme (Best That You Can Do)
· 3 min
-
Thrift Shop
· 2 min
-
Last Train to Clarksville
· 7 min
-
Pistol Packin' Mama
· 6 min
-
Let Me Love You
· 2 min
-
Smoke On the Water
· 2 min
-
All I Have to Do is Dream
· 4 min
-
White Rabbit
· 8 min
-
Tik-Toc
· 2 min
-
That's What Friends Are For
· 3 min
-
Poker Face
· 4 min
-
Just the Way You Are
· 3 min
-
Spanish Harlem
· 7 min
-
Don't Be Cruel
· 4 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": 505,
"albumId": 48,
"artistId": 19,
"title": "Ring My Bell",
"slug": "ring-my-bell-505",
"trackNumber": 1,
"durationSeconds": 200,
"isExplicit": false,
"playCount": 15675041,
"createdAt": "2022-11-08T01:58:55.053Z"
},
{
"id": 506,
"albumId": 48,
"artistId": 19,
"title": "Like a Prayer",
"slug": "like-a-prayer-506",
"trackNumber": 2,
"durationSeconds": 443,
"isExplicit": false,
"playCount": 30374634,
"createdAt": "2025-05-23T16:14:23.159Z"
},
{
"id": 507,
"albumId": 48,
"artistId": 19,
"title": "I Gotta Feeling",
"slug": "i-gotta-feeling-507",
"trackNumber": 3,
"durationSeconds": 145,
"isExplicit": true,
"playCount": 14079985,
"createdAt": "2026-01-04T14:12:42.456Z"
}
],
"meta": {
"page": 22,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=22&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=23&limit=24",
"prev": "/api/v1/songs?page=21&limit=24"
}
}