songs
songs
Page 8 of 10.
- Love's Theme
- Lonely Boy
- Tammy
- This Diamond Ring
- The Thing
- Purple Rain
- That'll Be the Day
- Purple Haze
- Walk Like a Man
- Crazy For You
- Losing My Religion
- Get Down Tonight
- We Are Family
- Theme From 'Greatest American Hero' (Believe It Or Not)
- Endless Love
- Come On-a My House
- The Loco-Motion
- Queen of Hearts
- Knock On Wood
- I Want to Know What Love Is
- The Boy is Mine
- Goodbye Yellow Brick Road
- We've Only Just Begun
- In the Year 2525 (Exordium & Terminus)
-
Love's Theme
· 5 min
-
Lonely Boy
· 6 min
-
Tammy
· 3 min
-
This Diamond Ring
· 4 min
-
The Thing
· 4 min
-
Purple Rain
· 4 min
-
That'll Be the Day
· 7 min
-
Purple Haze
· 2 min
-
Walk Like a Man
· 8 min
-
Crazy For You
· 7 min
-
Losing My Religion
· 2 min
-
Get Down Tonight
· 4 min
-
We Are Family
· 2 min
-
Theme From 'Greatest American Hero' (Believe It Or Not)
· 4 min
-
Endless Love
· 5 min
-
Come On-a My House
· 6 min
-
The Loco-Motion
· 4 min
-
Queen of Hearts
· 6 min
-
Knock On Wood
· 7 min
-
I Want to Know What Love Is
· 3 min
-
The Boy is Mine
· 8 min
-
Goodbye Yellow Brick Road
· 8 min
-
We've Only Just Begun
· 6 min
-
In the Year 2525 (Exordium & Terminus)
· 3 min
Love's Theme
Lonely Boy
Tammy
This Diamond Ring
The Thing
Purple Rain
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": 169,
"albumId": 17,
"artistId": 7,
"title": "Love's Theme",
"slug": "loves-theme-169",
"trackNumber": 6,
"durationSeconds": 288,
"isExplicit": false,
"playCount": 35136480,
"createdAt": "2025-05-07T14:56:52.551Z"
},
{
"id": 170,
"albumId": 17,
"artistId": 7,
"title": "Lonely Boy",
"slug": "lonely-boy-170",
"trackNumber": 7,
"durationSeconds": 341,
"isExplicit": false,
"playCount": 30599569,
"createdAt": "2021-06-13T17:55:46.568Z"
},
{
"id": 171,
"albumId": 17,
"artistId": 7,
"title": "Tammy",
"slug": "tammy-171",
"trackNumber": 8,
"durationSeconds": 167,
"isExplicit": false,
"playCount": 32404790,
"createdAt": "2025-05-12T11:34:27.172Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=8",
"next": "/api/v1/songs?page=9",
"prev": "/api/v1/songs?page=7"
}
}