songs
songs
Page 65 of 125.
Overview
-
Candle in the Wind '97
· 5 min
-
Good Vibrations
· 3 min
-
Good Vibrations
· 4 min
-
Strange Fruit
· 6 min
-
On My Own
· 4 min
-
Bridge Over Troubled Water
· 6 min
-
Love Me Do
· 3 min
-
I Went to Your Wedding
· 7 min
-
Jump
· 2 min
-
Let Me Love You
· 4 min
-
Whatcha Say
· 2 min
-
My Sharona
· 8 min
-
Ebony & Ivory
· 4 min
-
Disturbia
· 7 min
-
Lights
· 6 min
-
The Christmas Song (Chestnuts Roasting On An Open Fire)
· 5 min
-
Say You, Say Me
· 7 min
-
Tighten Up
· 5 min
-
Besame Mucho
· 6 min
-
Battle of New Orleans
· 5 min
-
Foolish Games
· 2 min
-
Down Under
· 2 min
-
You Can't Hurry Love
· 4 min
-
Duke of Earl
· 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": 1537,
"albumId": 146,
"artistId": 52,
"title": "Candle in the Wind '97",
"slug": "candle-in-the-wind-97-1537",
"trackNumber": 13,
"durationSeconds": 274,
"isExplicit": false,
"playCount": 9766742,
"createdAt": "2023-03-26T18:01:50.529Z"
},
{
"id": 1538,
"albumId": 147,
"artistId": 52,
"title": "Good Vibrations",
"slug": "good-vibrations-1538",
"trackNumber": 1,
"durationSeconds": 186,
"isExplicit": false,
"playCount": 9339002,
"createdAt": "2022-01-13T06:51:00.299Z"
},
{
"id": 1539,
"albumId": 147,
"artistId": 52,
"title": "Good Vibrations",
"slug": "good-vibrations-1539",
"trackNumber": 2,
"durationSeconds": 219,
"isExplicit": false,
"playCount": 6114512,
"createdAt": "2025-03-08T19:36:20.439Z"
}
],
"meta": {
"page": 65,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=65&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=66&limit=24",
"prev": "/api/v1/songs?page=64&limit=24"
}
}