songs
songs
Page 5 of 10.
- Fast Car
- Imagine
- Honky Tonk
- We Belong Together
- Being With You
- Indian Reservation (The Lament Of The Cherokee Reservation Indian)
- You Don't Have to Be a Star (To Be in My Show)
- Streets of Philadelphia
- In the Ghetto
- Dancing in the Street
- Ain't No Mountain High Enough
- Maneater
- Wannabe
- Can't Help Falling in Love
- Do That to Me One More Time
- The Thing
- Hello Dolly
- Will It Go Round In Circles
- What's Love Got to Do With It?
- The Joker
- Somebody to Love
- St Louis Blues
- You're So Vain
- Rapture
-
Fast Car
· 3 min
-
Imagine
· 3 min
-
Honky Tonk
· 2 min
-
We Belong Together
· 8 min
-
Being With You
· 5 min
-
Indian Reservation (The Lament Of The Cherokee Reservation Indian)
· 4 min
-
You Don't Have to Be a Star (To Be in My Show)
· 4 min
-
Streets of Philadelphia
· 5 min
-
In the Ghetto
· 5 min
-
Dancing in the Street
· 6 min
-
Ain't No Mountain High Enough
· 6 min
-
Maneater
· 6 min
-
Wannabe
· 2 min
-
Can't Help Falling in Love
· 4 min
-
Do That to Me One More Time
· 6 min
-
The Thing
· 3 min
-
Hello Dolly
· 7 min
-
Will It Go Round In Circles
· 5 min
-
What's Love Got to Do With It?
· 3 min
-
The Joker
· 6 min
-
Somebody to Love
· 4 min
-
St Louis Blues
· 6 min
-
You're So Vain
· 3 min
-
Rapture
· 8 min
Fast Car
Imagine
Honky Tonk
We Belong Together
Being With You
Indian Reservation (The Lament Of The Cherokee Reservation Indian)
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": 97,
"albumId": 10,
"artistId": 5,
"title": "Fast Car",
"slug": "fast-car-97",
"trackNumber": 7,
"durationSeconds": 187,
"isExplicit": false,
"playCount": 29222612,
"createdAt": "2025-07-31T20:21:43.852Z"
},
{
"id": 98,
"albumId": 10,
"artistId": 5,
"title": "Imagine",
"slug": "imagine-98",
"trackNumber": 8,
"durationSeconds": 177,
"isExplicit": false,
"playCount": 10951641,
"createdAt": "2024-04-02T14:34:56.921Z"
},
{
"id": 99,
"albumId": 10,
"artistId": 5,
"title": "Honky Tonk",
"slug": "honky-tonk-99",
"trackNumber": 9,
"durationSeconds": 119,
"isExplicit": false,
"playCount": 15003866,
"createdAt": "2021-07-27T19:00:56.203Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=5",
"next": "/api/v1/songs?page=6",
"prev": "/api/v1/songs?page=4"
}
}