songs
songs
Page 38 of 125.
Overview
-
Dreamlover
· 6 min
-
Oh My Papa (O Mein Papa)
· 7 min
-
Oh, Pretty Woman
· 5 min
-
More Than a Feeling
· 5 min
-
Love Will Keep Us Together
· 3 min
-
Only You (And You Alone)
· 4 min
-
Poker Face
· 7 min
-
At the Hop
· 5 min
-
Just My Imagination (Running Away With Me)
· 3 min
-
Tennessee Waltz
· 7 min
-
Freak Me
· 8 min
-
He's So Fine
· 4 min
-
I Think I Love You
· 7 min
-
Lady
· 6 min
-
Up Where We Belong
· 5 min
-
We've Only Just Begun
· 7 min
-
Venus
· 2 min
-
Sunshine of Your Love
· 4 min
-
Kiss & Say Goodbye
· 3 min
-
Bad Girls
· 7 min
-
Some Enchanted Evening
· 3 min
-
On Bended Knee
· 7 min
-
It's My Party
· 5 min
-
Cheek to Cheek
· 3 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": 889,
"albumId": 84,
"artistId": 34,
"title": "Dreamlover",
"slug": "dreamlover-889",
"trackNumber": 5,
"durationSeconds": 368,
"isExplicit": false,
"playCount": 20797241,
"createdAt": "2022-03-10T22:43:35.554Z"
},
{
"id": 890,
"albumId": 84,
"artistId": 34,
"title": "Oh My Papa (O Mein Papa)",
"slug": "oh-my-papa-o-mein-papa-890",
"trackNumber": 6,
"durationSeconds": 391,
"isExplicit": false,
"playCount": 7938408,
"createdAt": "2024-10-08T13:29:55.425Z"
},
{
"id": 891,
"albumId": 85,
"artistId": 34,
"title": "Oh, Pretty Woman",
"slug": "oh-pretty-woman-891",
"trackNumber": 1,
"durationSeconds": 284,
"isExplicit": false,
"playCount": 49572547,
"createdAt": "2026-01-20T09:41:48.463Z"
}
],
"meta": {
"page": 38,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=38&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=39&limit=24",
"prev": "/api/v1/songs?page=37&limit=24"
}
}