songs
songs
Page 9 of 10.
- Royals
- White Christmas
- Papa's Got a Brand New Bag
- Crocodile Rock
- Physical
- I Got You (I Feel Good)
- You Always Hurt the One You Love
- The Song From Moulin Rouge (Where Is Your Heart)
- Sledgehammer
- Vogue
- Honky Tonk
- Theme From 'A Summer Place'
- The Glow-Worm
- Chances Are
- Travellin' Band
- Say My Name
- Sweet Georgia Brown
- Cathy's Clown
- Pon De Replay
- The Sign
- Bad Romance
- That's the Way Love Goes
- So Much in Love
- Sixteen Tons
-
Royals
· 3 min
-
White Christmas
· 3 min
-
Papa's Got a Brand New Bag
· 5 min
-
Crocodile Rock
· 2 min
-
Physical
· 7 min
-
I Got You (I Feel Good)
· 6 min
-
You Always Hurt the One You Love
· 4 min
-
The Song From Moulin Rouge (Where Is Your Heart)
· 3 min
-
Sledgehammer
· 7 min
-
Vogue
· 4 min
-
Honky Tonk
· 5 min
-
Theme From 'A Summer Place'
· 3 min
-
The Glow-Worm
· 5 min
-
Chances Are
· 5 min
-
Travellin' Band
· 5 min
-
Say My Name
· 4 min
-
Sweet Georgia Brown
· 3 min
-
Cathy's Clown
· 3 min
-
Pon De Replay
· 6 min
-
The Sign
· 4 min
-
Bad Romance
· 6 min
-
That's the Way Love Goes
· 5 min
-
So Much in Love
· 2 min
-
Sixteen Tons
· 6 min
Royals
White Christmas
Papa's Got a Brand New Bag
Crocodile Rock
Physical
I Got You (I Feel Good)
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/songs?limit=25"const res = await fetch(
"https://example-data.com/api/v1/songs?limit=25"
);
const { data, meta } = await res.json();import type { Song, ListEnvelope } from "https://example-data.com/types/songs.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/songs?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Song>;import requests
res = requests.get(
"https://example-data.com/api/v1/songs",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 193,
"albumId": 19,
"artistId": 8,
"title": "Royals",
"slug": "royals-193",
"trackNumber": 4,
"durationSeconds": 179,
"isExplicit": true,
"playCount": 25406876,
"createdAt": "2026-02-15T08:07:58.578Z"
},
{
"id": 194,
"albumId": 19,
"artistId": 8,
"title": "White Christmas",
"slug": "white-christmas-194",
"trackNumber": 5,
"durationSeconds": 186,
"isExplicit": false,
"playCount": 26194895,
"createdAt": "2021-11-15T19:01:11.118Z"
},
{
"id": 195,
"albumId": 19,
"artistId": 8,
"title": "Papa's Got a Brand New Bag",
"slug": "papas-got-a-brand-new-bag-195",
"trackNumber": 6,
"durationSeconds": 309,
"isExplicit": false,
"playCount": 30047750,
"createdAt": "2026-02-15T20:26:10.673Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=9",
"next": "/api/v1/songs?page=10",
"prev": "/api/v1/songs?page=8"
}
}