songs
songs
Page 7 of 10.
- I Honestly Love You
- Iris
- Never Gonna Give You Up
- Winchester Cathedral
- I'll Be Missing You
- It Had to Be You
- Respect
- Sailing
- The Wanderer
- Soldier Boy
- Rock With You
- Love is a Many Splendoured Thing
- Crocodile Rock
- One O'Clock Jump
- My Heart Will Go On
- Personality
- The Wanderer
- Where is the Love?
- Prisoner of Love
- Breaking Up is Hard to Do
- Cat's in the Cradle
- Ghostbusters
- Oh My Papa (O Mein Papa)
- Born to Be Wild
-
I Honestly Love You
· 8 min
-
Iris
· 3 min
-
Never Gonna Give You Up
· 7 min
-
Winchester Cathedral
· 4 min
-
I'll Be Missing You
· 2 min
-
It Had to Be You
· 2 min
-
Respect
· 4 min
-
Sailing
· 7 min
-
The Wanderer
· 5 min
-
Soldier Boy
· 4 min
-
Rock With You
· 6 min
-
Love is a Many Splendoured Thing
· 3 min
-
Crocodile Rock
· 3 min
-
One O'Clock Jump
· 7 min
-
My Heart Will Go On
· 4 min
-
Personality
· 4 min
-
The Wanderer
· 4 min
-
Where is the Love?
· 5 min
-
Prisoner of Love
· 7 min
-
Breaking Up is Hard to Do
· 6 min
-
Cat's in the Cradle
· 8 min
-
Ghostbusters
· 5 min
-
Oh My Papa (O Mein Papa)
· 7 min
-
Born to Be Wild
· 5 min
I Honestly Love You
Iris
Never Gonna Give You Up
Winchester Cathedral
I'll Be Missing You
It Had to Be You
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": 145,
"albumId": 15,
"artistId": 6,
"title": "I Honestly Love You",
"slug": "i-honestly-love-you-145",
"trackNumber": 2,
"durationSeconds": 450,
"isExplicit": false,
"playCount": 3171945,
"createdAt": "2024-03-12T23:13:59.593Z"
},
{
"id": 146,
"albumId": 15,
"artistId": 6,
"title": "Iris",
"slug": "iris-146",
"trackNumber": 3,
"durationSeconds": 168,
"isExplicit": false,
"playCount": 17734644,
"createdAt": "2026-02-27T12:38:59.873Z"
},
{
"id": 147,
"albumId": 15,
"artistId": 6,
"title": "Never Gonna Give You Up",
"slug": "never-gonna-give-you-up-147",
"trackNumber": 4,
"durationSeconds": 408,
"isExplicit": false,
"playCount": 17923202,
"createdAt": "2024-05-05T19:22:51.891Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=7",
"next": "/api/v1/songs?page=8",
"prev": "/api/v1/songs?page=6"
}
}