songs
songs
Page 86 of 125.
Overview
-
Empire State Of Mind
· 6 min
-
The Sign
· 5 min
-
Burn
· 7 min
-
Smells Like Teen Spirit
· 7 min
-
Leader of the Pack
· 3 min
-
If You Don't Know Me By Now
· 5 min
-
I Still Haven't Found What I'm Looking For
· 7 min
-
Hello Dolly
· 4 min
-
On My Own
· 8 min
-
I Feel For You
· 5 min
-
Night Fever
· 8 min
-
Whole Lotta Shakin' Goin' On
· 8 min
-
Winchester Cathedral
· 3 min
-
Love Will Keep Us Together
· 8 min
-
Living For the City
· 3 min
-
Tom Dooley
· 3 min
-
People
· 7 min
-
Me & Mrs Jones
· 4 min
-
How Deep is Your Love?
· 2 min
-
Ring of Fire
· 8 min
-
Yeah!
· 2 min
-
Lonely Boy
· 2 min
-
Boogie Woogie Bugle Boy
· 6 min
-
Chapel of Love
· 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": 2041,
"albumId": 192,
"artistId": 68,
"title": "Empire State Of Mind",
"slug": "empire-state-of-mind-2041",
"trackNumber": 14,
"durationSeconds": 363,
"isExplicit": false,
"playCount": 35076852,
"createdAt": "2026-01-09T02:23:07.803Z"
},
{
"id": 2042,
"albumId": 193,
"artistId": 69,
"title": "The Sign",
"slug": "the-sign-2042",
"trackNumber": 1,
"durationSeconds": 320,
"isExplicit": false,
"playCount": 26677406,
"createdAt": "2023-02-26T06:01:32.030Z"
},
{
"id": 2043,
"albumId": 193,
"artistId": 69,
"title": "Burn",
"slug": "burn-2043",
"trackNumber": 2,
"durationSeconds": 449,
"isExplicit": false,
"playCount": 20766644,
"createdAt": "2024-01-17T22:53:05.117Z"
}
],
"meta": {
"page": 86,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=86&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=87&limit=24",
"prev": "/api/v1/songs?page=85&limit=24"
}
}