songs
songs
Page 40 of 125.
Overview
-
If You Leave Me Now
· 2 min
-
Rosanna
· 7 min
-
Sweet Georgia Brown
· 3 min
-
Working My Way Back to You
· 7 min
-
I Need You Now
· 4 min
-
Lola
· 5 min
-
Disturbia
· 2 min
-
Sunshine of Your Love
· 7 min
-
Summer in the City
· 4 min
-
Build Me Up Buttercup
· 5 min
-
Every Breath You Take
· 4 min
-
Truly Madly Deeply
· 8 min
-
Chattanoogie Shoe-Shine Boy
· 2 min
-
Since U Been Gone
· 5 min
-
A Tree in the Meadow
· 6 min
-
Save the Last Dance For Me
· 7 min
-
Sentimental Journey
· 4 min
-
How Do You Mend a Broken Heart
· 2 min
-
Creep
· 3 min
-
One
· 6 min
-
The Power of Love
· 5 min
-
Crazy in Love
· 6 min
-
Maneater
· 3 min
-
Beauty & the Beast
· 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": 937,
"albumId": 90,
"artistId": 35,
"title": "If You Leave Me Now",
"slug": "if-you-leave-me-now-937",
"trackNumber": 7,
"durationSeconds": 101,
"isExplicit": true,
"playCount": 17826101,
"createdAt": "2025-11-26T23:25:00.126Z"
},
{
"id": 938,
"albumId": 90,
"artistId": 35,
"title": "Rosanna",
"slug": "rosanna-938",
"trackNumber": 8,
"durationSeconds": 403,
"isExplicit": false,
"playCount": 33049213,
"createdAt": "2022-04-08T07:02:29.901Z"
},
{
"id": 939,
"albumId": 90,
"artistId": 35,
"title": "Sweet Georgia Brown",
"slug": "sweet-georgia-brown-939",
"trackNumber": 9,
"durationSeconds": 191,
"isExplicit": false,
"playCount": 9153690,
"createdAt": "2024-02-15T02:46:18.346Z"
}
],
"meta": {
"page": 40,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=40&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=41&limit=24",
"prev": "/api/v1/songs?page=39&limit=24"
}
}