songs
songs
Page 37 of 125.
Overview
-
Green River
· 2 min
-
I Can't Get Started
· 8 min
-
You Don't Have to Be a Star (To Be in My Show)
· 3 min
-
(I've Had) the Time of My Life
· 3 min
-
Rhinestone Cowboy
· 4 min
-
Morning Train (Nine to Five)
· 6 min
-
All Out of Love
· 7 min
-
Rock Around the Clock
· 5 min
-
Let it Be
· 4 min
-
Hold On
· 8 min
-
Everyday People
· 2 min
-
I Only Have Eyes For You
· 3 min
-
Frenesi
· 3 min
-
I Got You (I Feel Good)
· 7 min
-
Glory of Love
· 7 min
-
A String of Pearls
· 6 min
-
Tighten Up
· 5 min
-
It's Still Rock 'n' Roll to Me
· 4 min
-
Be My Love
· 5 min
-
(Everything I Do) I Do it For You
· 3 min
-
Glory of Love
· 7 min
-
Rag Mop
· 7 min
-
Royals
· 4 min
-
Imagine
· 8 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": 865,
"albumId": 82,
"artistId": 33,
"title": "Green River",
"slug": "green-river-865",
"trackNumber": 6,
"durationSeconds": 135,
"isExplicit": false,
"playCount": 18653160,
"createdAt": "2024-07-26T13:09:25.932Z"
},
{
"id": 866,
"albumId": 82,
"artistId": 33,
"title": "I Can't Get Started",
"slug": "i-cant-get-started-866",
"trackNumber": 7,
"durationSeconds": 464,
"isExplicit": false,
"playCount": 14932006,
"createdAt": "2025-05-07T09:00:10.099Z"
},
{
"id": 867,
"albumId": 82,
"artistId": 33,
"title": "You Don't Have to Be a Star (To Be in My Show)",
"slug": "you-dont-have-to-be-a-star-to-be-in-my-show-867",
"trackNumber": 8,
"durationSeconds": 183,
"isExplicit": false,
"playCount": 19620102,
"createdAt": "2025-05-04T10:53:49.100Z"
}
],
"meta": {
"page": 37,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=37&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=38&limit=24",
"prev": "/api/v1/songs?page=36&limit=24"
}
}