songs
songs
Page 2 of 10.
- Till I Waltz Again With You
- Morning Train (Nine to Five)
- Me & Bobby McGee
- Without You
- Get Back
- Why Do Fools Fall in Love?
- Your Song
- Sugar Shack
- She's a Lady
- Chattanooga Choo Choo
- Use Somebody
- In the Ghetto
- Promiscuous
- Spanish Harlem
- St Louis Blues
- Three Times a Lady
- Rudolph, the Red-Nosed Reindeer
- Boulevard of Broken Dreams
- Doo Wop (That Thing)
- Fame
- Instant Karma
- Hello Dolly
- Beat It
- Baby Got Back
-
Till I Waltz Again With You
· 6 min
-
Morning Train (Nine to Five)
· 7 min
-
Me & Bobby McGee
· 3 min
-
Without You
· 6 min
-
Get Back
· 2 min
-
Why Do Fools Fall in Love?
· 6 min
-
Your Song
· 5 min
-
Sugar Shack
· 8 min
-
She's a Lady
· 7 min
-
Chattanooga Choo Choo
· 8 min
-
Use Somebody
· 3 min
-
In the Ghetto
· 4 min
-
Promiscuous
· 3 min
-
Spanish Harlem
· 4 min
-
St Louis Blues
· 2 min
-
Three Times a Lady
· 7 min
-
Rudolph, the Red-Nosed Reindeer
· 6 min
-
Boulevard of Broken Dreams
· 3 min
-
Doo Wop (That Thing)
· 5 min
-
Fame
· 4 min
-
Instant Karma
· 2 min
-
Hello Dolly
· 2 min
-
Beat It
· 2 min
-
Baby Got Back
· 2 min
Till I Waltz Again With You
Morning Train (Nine to Five)
Me & Bobby McGee
Without You
Get Back
Why Do Fools Fall in Love?
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": 25,
"albumId": 4,
"artistId": 2,
"title": "Till I Waltz Again With You",
"slug": "till-i-waltz-again-with-you-25",
"trackNumber": 1,
"durationSeconds": 363,
"isExplicit": false,
"playCount": 24731162,
"createdAt": "2025-03-19T05:21:20.184Z"
},
{
"id": 26,
"albumId": 4,
"artistId": 2,
"title": "Morning Train (Nine to Five)",
"slug": "morning-train-nine-to-five-26",
"trackNumber": 2,
"durationSeconds": 432,
"isExplicit": false,
"playCount": 38615386,
"createdAt": "2023-01-10T15:17:57.671Z"
},
{
"id": 27,
"albumId": 4,
"artistId": 2,
"title": "Me & Bobby McGee",
"slug": "me-bobby-mcgee-27",
"trackNumber": 3,
"durationSeconds": 202,
"isExplicit": false,
"playCount": 8877419,
"createdAt": "2021-10-27T18:45:31.581Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=2",
"next": "/api/v1/songs?page=3",
"prev": "/api/v1/songs?page=1"
}
}