songs
songs
Page 6 of 10.
- I Honestly Love You
- Your Cheatin' Heart
- Boogie Oogie Oogie
- Drop it Like It's Hot
- Hold On
- There goes my baby
- Need You Tonight
- Change the World
- Baby Baby
- Stormy Weather (Keeps Rainin' All the Time)
- Under the Bridge
- Pick Up the Pieces
- You Sexy Thing
- Bad Day
- Ghostbusters
- Irreplaceable
- We Will Rock You
- Love Me Do
- Glory of Love
- Disturbia
- Love Shack
- I Get Around
- Flashdance. What a Feeling
- Don't Leave Me This Way
-
I Honestly Love You
· 5 min
-
Your Cheatin' Heart
· 3 min
-
Boogie Oogie Oogie
· 8 min
-
Drop it Like It's Hot
· 5 min
-
Hold On
· 7 min
-
There goes my baby
· 7 min
-
Need You Tonight
· 3 min
-
Change the World
· 2 min
-
Baby Baby
· 5 min
-
Stormy Weather (Keeps Rainin' All the Time)
· 3 min
-
Under the Bridge
· 6 min
-
Pick Up the Pieces
· 6 min
-
You Sexy Thing
· 8 min
-
Bad Day
· 4 min
-
Ghostbusters
· 7 min
-
Irreplaceable
· 4 min
-
We Will Rock You
· 7 min
-
Love Me Do
· 4 min
-
Glory of Love
· 2 min
-
Disturbia
· 3 min
-
Love Shack
· 5 min
-
I Get Around
· 5 min
-
Flashdance. What a Feeling
· 5 min
-
Don't Leave Me This Way
· 5 min
I Honestly Love You
Your Cheatin' Heart
Boogie Oogie Oogie
Drop it Like It's Hot
Hold On
There goes my baby
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": 121,
"albumId": 12,
"artistId": 5,
"title": "I Honestly Love You",
"slug": "i-honestly-love-you-121",
"trackNumber": 6,
"durationSeconds": 311,
"isExplicit": false,
"playCount": 9318432,
"createdAt": "2025-07-01T06:08:44.758Z"
},
{
"id": 122,
"albumId": 12,
"artistId": 5,
"title": "Your Cheatin' Heart",
"slug": "your-cheatin-heart-122",
"trackNumber": 7,
"durationSeconds": 181,
"isExplicit": false,
"playCount": 27600411,
"createdAt": "2023-07-26T13:38:34.583Z"
},
{
"id": 123,
"albumId": 12,
"artistId": 5,
"title": "Boogie Oogie Oogie",
"slug": "boogie-oogie-oogie-123",
"trackNumber": 8,
"durationSeconds": 453,
"isExplicit": true,
"playCount": 48521285,
"createdAt": "2022-11-17T23:13:33.757Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=6",
"next": "/api/v1/songs?page=7",
"prev": "/api/v1/songs?page=5"
}
}