songs
songs
Page 43 of 125.
Overview
-
Wipe Out
· 2 min
-
Tom Dooley
· 7 min
-
Runaround Sue
· 5 min
-
You're the One That I Want
· 2 min
-
Get Off of My Cloud
· 8 min
-
Iris
· 6 min
-
Dance to the Music
· 2 min
-
Spirit in the Sky
· 3 min
-
Drop it Like It's Hot
· 5 min
-
I Gotta Feeling
· 7 min
-
Because You Loved Me
· 7 min
-
Ballad of the Green Berets
· 3 min
-
Endless Love
· 5 min
-
The Great Pretender
· 4 min
-
Your Song
· 4 min
-
Always On My Mind
· 8 min
-
You Sexy Thing
· 6 min
-
Hey There Delilah
· 3 min
-
Ballad of the Green Berets
· 4 min
-
Rock With You
· 3 min
-
Chapel of Love
· 3 min
-
Working My Way Back to You
· 7 min
-
Over the Rainbow
· 5 min
-
Shake Down
· 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": 1009,
"albumId": 97,
"artistId": 38,
"title": "Wipe Out",
"slug": "wipe-out-1009",
"trackNumber": 6,
"durationSeconds": 131,
"isExplicit": false,
"playCount": 18976396,
"createdAt": "2025-05-18T13:48:44.453Z"
},
{
"id": 1010,
"albumId": 97,
"artistId": 38,
"title": "Tom Dooley",
"slug": "tom-dooley-1010",
"trackNumber": 7,
"durationSeconds": 432,
"isExplicit": false,
"playCount": 46887585,
"createdAt": "2022-12-15T13:42:43.897Z"
},
{
"id": 1011,
"albumId": 97,
"artistId": 38,
"title": "Runaround Sue",
"slug": "runaround-sue-1011",
"trackNumber": 8,
"durationSeconds": 288,
"isExplicit": false,
"playCount": 2235010,
"createdAt": "2023-03-10T13:20:59.154Z"
}
],
"meta": {
"page": 43,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=43&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=44&limit=24",
"prev": "/api/v1/songs?page=42&limit=24"
}
}