songs
songs
Page 30 of 125.
Overview
-
All Night Long (All Night)
· 7 min
-
Love Me Tender
· 7 min
-
Let's Get it On
· 6 min
-
Music
· 2 min
-
California Dreamin'
· 3 min
-
We Belong Together
· 3 min
-
Georgy Girl
· 7 min
-
Happy Together
· 5 min
-
Philadelphia Freedom
· 4 min
-
Band On the Run
· 6 min
-
Woman
· 2 min
-
Till I Waltz Again With You
· 6 min
-
Grenade
· 6 min
-
Be My Love
· 2 min
-
Careless Whisper
· 3 min
-
Sweet Dreams (Are Made of This)
· 7 min
-
(Ghost) Riders in the Sky
· 3 min
-
What Goes Around Comes Around
· 7 min
-
I'll Take You There
· 7 min
-
My Blue Heaven
· 7 min
-
I Want to Hold Your Hand
· 3 min
-
Blaze of Glory
· 3 min
-
I'll Never Smile Again
· 6 min
-
Pon De Replay
· 5 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": 697,
"albumId": 65,
"artistId": 26,
"title": "All Night Long (All Night)",
"slug": "all-night-long-all-night-697",
"trackNumber": 1,
"durationSeconds": 438,
"isExplicit": false,
"playCount": 16787429,
"createdAt": "2022-07-07T19:55:30.954Z"
},
{
"id": 698,
"albumId": 65,
"artistId": 26,
"title": "Love Me Tender",
"slug": "love-me-tender-698",
"trackNumber": 2,
"durationSeconds": 419,
"isExplicit": false,
"playCount": 38607758,
"createdAt": "2024-04-16T15:24:37.371Z"
},
{
"id": 699,
"albumId": 65,
"artistId": 26,
"title": "Let's Get it On",
"slug": "lets-get-it-on-699",
"trackNumber": 3,
"durationSeconds": 365,
"isExplicit": true,
"playCount": 6132976,
"createdAt": "2025-01-25T10:54:26.741Z"
}
],
"meta": {
"page": 30,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=30&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=31&limit=24",
"prev": "/api/v1/songs?page=29&limit=24"
}
}