songs
songs
Page 10 of 10.
- Gold Digger
- I'm Looking Over a Four Leaf Clover
- Seasons in the Sun
- Brother Louie
- California Dreamin'
- Downtown
- The Loco-Motion
- Do Wah Diddy Diddy
- My Love
- Heartbreak Hotel
- You Sexy Thing
- 12th Street Rag
- That's the Way (I Like It)
- The First Time Ever I Saw Your Face
- Moonlight Serenade
- YMCA
- Be My Love
- The Hustle
- Because You Loved Me
- Rapture
- Candle in the Wind '97
- Over There
- Bleeding Love
- Ain't No Sunshine
-
Gold Digger
· 4 min
-
I'm Looking Over a Four Leaf Clover
· 7 min
-
Seasons in the Sun
· 6 min
-
Brother Louie
· 6 min
-
California Dreamin'
· 7 min
-
Downtown
· 2 min
-
The Loco-Motion
· 3 min
-
Do Wah Diddy Diddy
· 3 min
-
My Love
· 4 min
-
Heartbreak Hotel
· 8 min
-
You Sexy Thing
· 2 min
-
12th Street Rag
· 5 min
-
That's the Way (I Like It)
· 4 min
-
The First Time Ever I Saw Your Face
· 2 min
-
Moonlight Serenade
· 4 min
-
YMCA
· 6 min
-
Be My Love
· 7 min
-
The Hustle
· 7 min
-
Because You Loved Me
· 7 min
-
Rapture
· 3 min
-
Candle in the Wind '97
· 5 min
-
Over There
· 5 min
-
Bleeding Love
· 7 min
-
Ain't No Sunshine
· 8 min
Gold Digger
I'm Looking Over a Four Leaf Clover
Seasons in the Sun
Brother Louie
California Dreamin'
Downtown
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": 217,
"albumId": 21,
"artistId": 8,
"title": "Gold Digger",
"slug": "gold-digger-217",
"trackNumber": 5,
"durationSeconds": 264,
"isExplicit": true,
"playCount": 4938687,
"createdAt": "2021-10-21T07:30:51.311Z"
},
{
"id": 218,
"albumId": 21,
"artistId": 8,
"title": "I'm Looking Over a Four Leaf Clover",
"slug": "im-looking-over-a-four-leaf-clover-218",
"trackNumber": 6,
"durationSeconds": 428,
"isExplicit": true,
"playCount": 805108,
"createdAt": "2025-11-30T16:12:42.341Z"
},
{
"id": 219,
"albumId": 21,
"artistId": 8,
"title": "Seasons in the Sun",
"slug": "seasons-in-the-sun-219",
"trackNumber": 7,
"durationSeconds": 347,
"isExplicit": false,
"playCount": 35815445,
"createdAt": "2023-03-18T10:38:29.811Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=10",
"next": "/api/v1/songs?page=11",
"prev": "/api/v1/songs?page=9"
}
}