songs
songs
Page 77 of 125.
Overview
-
(I've Had) the Time of My Life
· 5 min
-
You Belong to Me
· 6 min
-
Do That to Me One More Time
· 2 min
-
Stairway to Heaven
· 6 min
-
Stagger Lee
· 5 min
-
I Can Dream, Can't I?
· 3 min
-
Duke of Earl
· 4 min
-
Let's Groove
· 5 min
-
Sixteen Tons
· 5 min
-
Smoke Gets in Your Eyes
· 5 min
-
Long Cool Woman in a Black Dress
· 5 min
-
Stars & Stripes Forever
· 3 min
-
Miss You Much
· 4 min
-
Good Lovin'
· 2 min
-
Streets of Philadelphia
· 4 min
-
Faith
· 2 min
-
Freak Me
· 3 min
-
Dreams
· 4 min
-
Mony Mony
· 7 min
-
Instant Karma
· 5 min
-
Hanging by a Moment
· 7 min
-
Morning Train (Nine to Five)
· 4 min
-
Magic
· 4 min
-
Love Hangover
· 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": 1825,
"albumId": 174,
"artistId": 62,
"title": "(I've Had) the Time of My Life",
"slug": "ive-had-the-time-of-my-life-1825",
"trackNumber": 6,
"durationSeconds": 289,
"isExplicit": false,
"playCount": 18846424,
"createdAt": "2023-07-15T14:08:38.434Z"
},
{
"id": 1826,
"albumId": 174,
"artistId": 62,
"title": "You Belong to Me",
"slug": "you-belong-to-me-1826",
"trackNumber": 7,
"durationSeconds": 370,
"isExplicit": false,
"playCount": 32046739,
"createdAt": "2025-06-28T21:26:41.705Z"
},
{
"id": 1827,
"albumId": 174,
"artistId": 62,
"title": "Do That to Me One More Time",
"slug": "do-that-to-me-one-more-time-1827",
"trackNumber": 8,
"durationSeconds": 112,
"isExplicit": false,
"playCount": 7600379,
"createdAt": "2022-12-15T17:45:24.977Z"
}
],
"meta": {
"page": 77,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=77&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=78&limit=24",
"prev": "/api/v1/songs?page=76&limit=24"
}
}