songs
songs
Page 69 of 125.
Overview
-
Wild Thing
· 5 min
-
Reach Out (I'll Be There)
· 7 min
-
That's the Way (I Like It)
· 5 min
-
Doo Wop (That Thing)
· 2 min
-
I Wanna Dance With Somebody (Who Loves Me)
· 6 min
-
Maggie May
· 4 min
-
Endless Love
· 7 min
-
Grenade
· 7 min
-
St George & the Dragonette
· 4 min
-
The Streak
· 3 min
-
Footloose
· 5 min
-
Jessie's Girl
· 2 min
-
Hey Baby
· 4 min
-
Papa Don't Preach
· 3 min
-
Fly Robin Fly
· 2 min
-
Nothing Compares 2 U
· 6 min
-
Pistol Packin' Mama
· 5 min
-
12th Street Rag
· 4 min
-
Can You Feel the Love Tonight
· 7 min
-
Come On Eileen
· 3 min
-
You Sexy Thing
· 6 min
-
Can't Help Falling in Love
· 5 min
-
I Will Always Love You
· 2 min
-
Big Bad John
· 6 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": 1633,
"albumId": 157,
"artistId": 55,
"title": "Wild Thing",
"slug": "wild-thing-1633",
"trackNumber": 2,
"durationSeconds": 318,
"isExplicit": false,
"playCount": 41832589,
"createdAt": "2025-04-28T15:06:08.061Z"
},
{
"id": 1634,
"albumId": 157,
"artistId": 55,
"title": "Reach Out (I'll Be There)",
"slug": "reach-out-ill-be-there-1634",
"trackNumber": 3,
"durationSeconds": 394,
"isExplicit": false,
"playCount": 49976647,
"createdAt": "2026-01-31T03:47:58.770Z"
},
{
"id": 1635,
"albumId": 157,
"artistId": 55,
"title": "That's the Way (I Like It)",
"slug": "thats-the-way-i-like-it-1635",
"trackNumber": 4,
"durationSeconds": 319,
"isExplicit": false,
"playCount": 46183452,
"createdAt": "2025-01-13T09:59:21.262Z"
}
],
"meta": {
"page": 69,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=69&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=70&limit=24",
"prev": "/api/v1/songs?page=68&limit=24"
}
}