songs
songs
Page 95 of 125.
Overview
-
Hanging by a Moment
· 7 min
-
Manana (Is Soon Enough For Me)
· 8 min
-
Walk Don't Run
· 5 min
-
In the End
· 2 min
-
Que sera sera (Whatever will be will be)
· 3 min
-
Horse With No Name
· 4 min
-
Seasons in the Sun
· 2 min
-
How Much is That Doggy in the Window?
· 8 min
-
Higher Love
· 3 min
-
Band On the Run
· 7 min
-
I'll be seeing you
· 6 min
-
For What It's Worth (Stop, Hey What's That Sound)
· 6 min
-
Superstar
· 4 min
-
Footloose
· 7 min
-
Why Do Fools Fall in Love?
· 2 min
-
Magic
· 3 min
-
Hips don't lie
· 2 min
-
Mama Told Me Not to Come
· 6 min
-
Being With You
· 2 min
-
Livin' On a Prayer
· 4 min
-
Night Fever
· 4 min
-
Pop Muzik
· 6 min
-
Heartbreak Hotel
· 2 min
-
I'm Looking Over a Four Leaf Clover
· 2 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": 2257,
"albumId": 213,
"artistId": 74,
"title": "Hanging by a Moment",
"slug": "hanging-by-a-moment-2257",
"trackNumber": 1,
"durationSeconds": 434,
"isExplicit": false,
"playCount": 24267149,
"createdAt": "2024-02-26T05:18:47.214Z"
},
{
"id": 2258,
"albumId": 213,
"artistId": 74,
"title": "Manana (Is Soon Enough For Me)",
"slug": "manana-is-soon-enough-for-me-2258",
"trackNumber": 2,
"durationSeconds": 465,
"isExplicit": false,
"playCount": 30831512,
"createdAt": "2026-05-20T00:47:19.207Z"
},
{
"id": 2259,
"albumId": 213,
"artistId": 74,
"title": "Walk Don't Run",
"slug": "walk-dont-run-2259",
"trackNumber": 3,
"durationSeconds": 291,
"isExplicit": true,
"playCount": 24064385,
"createdAt": "2021-12-30T01:51:07.446Z"
}
],
"meta": {
"page": 95,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=95&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=96&limit=24",
"prev": "/api/v1/songs?page=94&limit=24"
}
}