songs
songs
Page 123 of 125.
Overview
-
The Loco-Motion
· 2 min
-
Crazy For You
· 2 min
-
Cherish
· 7 min
-
Mercy Mercy Me (The Ecology)
· 2 min
-
Mr Big Stuff
· 4 min
-
Tighten Up
· 3 min
-
Buttons & Bows
· 2 min
-
Abracadabra
· 3 min
-
Say My Name
· 3 min
-
Don't Let the Sun Go Down On Me
· 4 min
-
I'm Walking Behind You
· 6 min
-
Rhapsody in Blue
· 5 min
-
Peg o' My Heart
· 6 min
-
Mmmbop
· 4 min
-
Honky Tonk
· 3 min
-
It Had to Be You
· 5 min
-
Hey Baby
· 2 min
-
How Much is That Doggy in the Window?
· 8 min
-
Waiting For a Girl Like You
· 2 min
-
(Everything I Do) I Do it For You
· 5 min
-
Be Bop a Lula
· 7 min
-
Gonna Make You Sweat (Everybody Dance Now)
· 4 min
-
I Don't Want to Miss a Thing
· 5 min
-
Theme From 'Greatest American Hero' (Believe It Or Not)
· 3 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": 2929,
"albumId": 278,
"artistId": 98,
"title": "The Loco-Motion",
"slug": "the-loco-motion-2929",
"trackNumber": 11,
"durationSeconds": 122,
"isExplicit": false,
"playCount": 26296416,
"createdAt": "2023-02-13T11:10:19.891Z"
},
{
"id": 2930,
"albumId": 278,
"artistId": 98,
"title": "Crazy For You",
"slug": "crazy-for-you-2930",
"trackNumber": 12,
"durationSeconds": 103,
"isExplicit": false,
"playCount": 46708176,
"createdAt": "2022-07-11T16:44:36.060Z"
},
{
"id": 2931,
"albumId": 278,
"artistId": 98,
"title": "Cherish",
"slug": "cherish-2931",
"trackNumber": 13,
"durationSeconds": 395,
"isExplicit": false,
"playCount": 25021936,
"createdAt": "2025-10-05T04:05:39.947Z"
}
],
"meta": {
"page": 123,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=123&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=124&limit=24",
"prev": "/api/v1/songs?page=122&limit=24"
}
}