songs
songs
Page 67 of 125.
Overview
-
Sleep Walk
· 6 min
-
All You Need is Love
· 6 min
-
Hotel California
· 2 min
-
Over There
· 3 min
-
If (They Made Me a King)
· 5 min
-
So Much in Love
· 5 min
-
Boom Boom Pow
· 3 min
-
Rags to Riches
· 5 min
-
Frankenstein
· 6 min
-
Jack & Diane
· 5 min
-
Big Girls Don't Cry
· 3 min
-
One O'Clock Jump
· 7 min
-
Hair
· 6 min
-
Love's Theme
· 7 min
-
E.T.
· 2 min
-
Lose Yourself
· 6 min
-
Puttin' on the Ritz
· 7 min
-
Besame Mucho
· 6 min
-
California Dreamin'
· 5 min
-
King of the Road
· 5 min
-
Swanee
· 2 min
-
Let's Get it On
· 2 min
-
Strawberry Fields Forever
· 8 min
-
I Don't Want to Miss a Thing
· 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": 1585,
"albumId": 151,
"artistId": 53,
"title": "Sleep Walk",
"slug": "sleep-walk-1585",
"trackNumber": 12,
"durationSeconds": 360,
"isExplicit": false,
"playCount": 17205157,
"createdAt": "2022-10-13T02:52:19.000Z"
},
{
"id": 1586,
"albumId": 151,
"artistId": 53,
"title": "All You Need is Love",
"slug": "all-you-need-is-love-1586",
"trackNumber": 13,
"durationSeconds": 356,
"isExplicit": false,
"playCount": 7373871,
"createdAt": "2022-02-09T02:17:54.134Z"
},
{
"id": 1587,
"albumId": 151,
"artistId": 53,
"title": "Hotel California",
"slug": "hotel-california-1587",
"trackNumber": 14,
"durationSeconds": 115,
"isExplicit": false,
"playCount": 24514766,
"createdAt": "2025-10-24T14:57:47.740Z"
}
],
"meta": {
"page": 67,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=67&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=68&limit=24",
"prev": "/api/v1/songs?page=66&limit=24"
}
}