songs
songs
Page 112 of 125.
Overview
-
Queen of Hearts
· 3 min
-
The Long & Winding Road
· 4 min
-
Too Close
· 5 min
-
Wild Wild West
· 5 min
-
People Got to Be Free
· 6 min
-
Love In This Club
· 2 min
-
Without You
· 4 min
-
I Shot the Sheriff
· 8 min
-
Love Train
· 6 min
-
Born in the USA
· 6 min
-
Theme From 'A Summer Place'
· 7 min
-
I Don't Want to Miss a Thing
· 7 min
-
Ol' Man River
· 4 min
-
So Much in Love
· 3 min
-
When You Wish Upon a Star
· 3 min
-
Family Affair
· 5 min
-
Call Me Maybe
· 3 min
-
Downtown
· 2 min
-
Brown Eyed Girl
· 5 min
-
Love's Theme
· 8 min
-
Baby Got Back
· 3 min
-
Da Doo Ron Ron (When He Walked Me Home)
· 3 min
-
Tequila
· 2 min
-
Go Your Own Way
· 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": 2665,
"albumId": 254,
"artistId": 89,
"title": "Queen of Hearts",
"slug": "queen-of-hearts-2665",
"trackNumber": 3,
"durationSeconds": 158,
"isExplicit": false,
"playCount": 48815641,
"createdAt": "2024-12-06T19:46:07.153Z"
},
{
"id": 2666,
"albumId": 254,
"artistId": 89,
"title": "The Long & Winding Road",
"slug": "the-long-winding-road-2666",
"trackNumber": 4,
"durationSeconds": 217,
"isExplicit": false,
"playCount": 31164222,
"createdAt": "2022-12-29T21:30:01.304Z"
},
{
"id": 2667,
"albumId": 254,
"artistId": 89,
"title": "Too Close",
"slug": "too-close-2667",
"trackNumber": 5,
"durationSeconds": 291,
"isExplicit": false,
"playCount": 12397448,
"createdAt": "2022-06-07T05:06:31.646Z"
}
],
"meta": {
"page": 112,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=112&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=113&limit=24",
"prev": "/api/v1/songs?page=111&limit=24"
}
}