songs
songs
Page 41 of 125.
Overview
-
Funkytown
· 4 min
-
Somethin' Stupid
· 7 min
-
Oh, Pretty Woman
· 6 min
-
Love Will Keep Us Together
· 7 min
-
Incense & Peppermints
· 3 min
-
Stop! in the Name of Love
· 5 min
-
Indian Reservation (The Lament Of The Cherokee Reservation Indian)
· 6 min
-
Makin' Whoopee
· 3 min
-
I Want You Back
· 6 min
-
Sugar Sugar
· 7 min
-
Music
· 7 min
-
Why Don't You Believe Me?
· 6 min
-
It's Still Rock 'n' Roll to Me
· 6 min
-
You Were Meant for Me
· 4 min
-
I Just Called to Say I Love You
· 5 min
-
Hold On
· 4 min
-
Dancing Queen
· 3 min
-
All You Need is Love
· 4 min
-
Ray of Light
· 2 min
-
Tha Crossroads
· 6 min
-
Sweet Soul Music
· 3 min
-
Dilemma
· 7 min
-
Another One Bites the Dust
· 7 min
-
The Glow-Worm
· 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": 961,
"albumId": 92,
"artistId": 36,
"title": "Funkytown",
"slug": "funkytown-961",
"trackNumber": 9,
"durationSeconds": 215,
"isExplicit": false,
"playCount": 793420,
"createdAt": "2021-11-14T22:23:55.377Z"
},
{
"id": 962,
"albumId": 92,
"artistId": 36,
"title": "Somethin' Stupid",
"slug": "somethin-stupid-962",
"trackNumber": 10,
"durationSeconds": 425,
"isExplicit": false,
"playCount": 40048505,
"createdAt": "2025-01-15T08:01:06.852Z"
},
{
"id": 963,
"albumId": 92,
"artistId": 36,
"title": "Oh, Pretty Woman",
"slug": "oh-pretty-woman-963",
"trackNumber": 11,
"durationSeconds": 362,
"isExplicit": false,
"playCount": 38031418,
"createdAt": "2024-04-23T20:53:42.647Z"
}
],
"meta": {
"page": 41,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=41&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=42&limit=24",
"prev": "/api/v1/songs?page=40&limit=24"
}
}