songs
songs
Page 19 of 125.
Overview
-
Chapel of Love
· 7 min
-
Are You Lonesome Tonight?
· 2 min
-
Hard to Say I'm Sorry
· 3 min
-
Wanted
· 3 min
-
Centerfold
· 2 min
-
I Shot the Sheriff
· 6 min
-
A Thousand Miles
· 4 min
-
50 Ways to Leave Your Lover
· 6 min
-
1999
· 2 min
-
What Goes Around Comes Around
· 3 min
-
Wabash Cannonball
· 4 min
-
(I Can't Get No) Satisfaction
· 5 min
-
Sledgehammer
· 3 min
-
Buttons & Bows
· 4 min
-
Hot Stuff
· 5 min
-
Moonlight Cocktail
· 5 min
-
Ruby Tuesday
· 7 min
-
The Way You Look Tonight
· 2 min
-
Horse With No Name
· 4 min
-
The Gypsy
· 8 min
-
T For Texas (Blue Yodel No 1)
· 7 min
-
People
· 7 min
-
Moonlight Serenade
· 8 min
-
Touch Me
· 7 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": 433,
"albumId": 41,
"artistId": 18,
"title": "Chapel of Love",
"slug": "chapel-of-love-433",
"trackNumber": 1,
"durationSeconds": 409,
"isExplicit": false,
"playCount": 26932515,
"createdAt": "2022-04-02T10:36:44.761Z"
},
{
"id": 434,
"albumId": 41,
"artistId": 18,
"title": "Are You Lonesome Tonight?",
"slug": "are-you-lonesome-tonight-434",
"trackNumber": 2,
"durationSeconds": 145,
"isExplicit": false,
"playCount": 3229014,
"createdAt": "2021-07-07T01:49:11.448Z"
},
{
"id": 435,
"albumId": 41,
"artistId": 18,
"title": "Hard to Say I'm Sorry",
"slug": "hard-to-say-im-sorry-435",
"trackNumber": 3,
"durationSeconds": 190,
"isExplicit": false,
"playCount": 28275030,
"createdAt": "2025-01-07T09:58:14.562Z"
}
],
"meta": {
"page": 19,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=19&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=20&limit=24",
"prev": "/api/v1/songs?page=18&limit=24"
}
}