songs
songs
Page 34 of 125.
Overview
-
Lookin' Out My Back Door
· 2 min
-
Stranger On the Shore
· 6 min
-
Empire State Of Mind
· 3 min
-
Tears of a Clown
· 3 min
-
You Don't Bring Me Flowers
· 5 min
-
Grenade
· 3 min
-
Ain't No Mountain High Enough
· 6 min
-
Sledgehammer
· 6 min
-
Slow Poke
· 2 min
-
Tutti Frutti
· 7 min
-
Since U Been Gone
· 2 min
-
The Loco-Motion
· 2 min
-
Ring of Fire
· 3 min
-
Pony Time
· 3 min
-
Silly Love Songs
· 7 min
-
White Rabbit
· 7 min
-
The Joker
· 5 min
-
Cry Like a Baby
· 7 min
-
Three Times a Lady
· 7 min
-
You're the One That I Want
· 4 min
-
Baker Street
· 2 min
-
Get Back
· 6 min
-
Wabash Cannonball
· 6 min
-
Can't Get Enough of Your Love, Babe
· 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": 793,
"albumId": 74,
"artistId": 30,
"title": "Lookin' Out My Back Door",
"slug": "lookin-out-my-back-door-793",
"trackNumber": 4,
"durationSeconds": 131,
"isExplicit": false,
"playCount": 26029597,
"createdAt": "2026-05-05T21:53:44.310Z"
},
{
"id": 794,
"albumId": 74,
"artistId": 30,
"title": "Stranger On the Shore",
"slug": "stranger-on-the-shore-794",
"trackNumber": 5,
"durationSeconds": 365,
"isExplicit": false,
"playCount": 39846310,
"createdAt": "2025-01-28T14:18:17.277Z"
},
{
"id": 795,
"albumId": 74,
"artistId": 30,
"title": "Empire State Of Mind",
"slug": "empire-state-of-mind-795",
"trackNumber": 6,
"durationSeconds": 190,
"isExplicit": false,
"playCount": 12657876,
"createdAt": "2024-08-10T19:34:27.819Z"
}
],
"meta": {
"page": 34,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=34&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=35&limit=24",
"prev": "/api/v1/songs?page=33&limit=24"
}
}