songs
songs
Page 106 of 125.
Overview
-
The Way We Were
· 3 min
-
Whispering
· 2 min
-
Sentimental Journey
· 6 min
-
Yellow Rose of Texas
· 3 min
-
Come On Eileen
· 3 min
-
Papa's Got a Brand New Bag
· 3 min
-
Third Man Theme
· 6 min
-
1999
· 8 min
-
The Sweet Escape
· 4 min
-
Pon De Replay
· 4 min
-
Can't Help Falling in Love
· 7 min
-
My Eyes Adored You
· 7 min
-
Let's Groove
· 6 min
-
I Need You Now
· 8 min
-
Hang On Sloopy
· 4 min
-
Groove is in the Heart
· 5 min
-
How Do I Live?
· 7 min
-
Penny Lane
· 6 min
-
Good Vibrations
· 8 min
-
Take The 'A' Train
· 5 min
-
You make Me Wanna
· 3 min
-
Stormy Weather (Keeps Rainin' All the Time)
· 4 min
-
I Fall to Pieces
· 4 min
-
Whatcha Say
· 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": 2521,
"albumId": 239,
"artistId": 84,
"title": "The Way We Were",
"slug": "the-way-we-were-2521",
"trackNumber": 3,
"durationSeconds": 198,
"isExplicit": false,
"playCount": 314189,
"createdAt": "2024-12-22T14:32:13.960Z"
},
{
"id": 2522,
"albumId": 239,
"artistId": 84,
"title": "Whispering",
"slug": "whispering-2522",
"trackNumber": 4,
"durationSeconds": 117,
"isExplicit": false,
"playCount": 49005659,
"createdAt": "2022-01-09T15:48:34.734Z"
},
{
"id": 2523,
"albumId": 239,
"artistId": 84,
"title": "Sentimental Journey",
"slug": "sentimental-journey-2523",
"trackNumber": 5,
"durationSeconds": 370,
"isExplicit": false,
"playCount": 6356915,
"createdAt": "2022-12-06T13:04:54.350Z"
}
],
"meta": {
"page": 106,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=106&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=107&limit=24",
"prev": "/api/v1/songs?page=105&limit=24"
}
}