songs
songs
Page 88 of 125.
Overview
-
My Love
· 6 min
-
Honky Tonk
· 3 min
-
Da Doo Ron Ron (When He Walked Me Home)
· 3 min
-
(It's No) Sin
· 4 min
-
Roses Are Red
· 6 min
-
(Just Like) Starting Over
· 5 min
-
Colors of the Wind
· 3 min
-
Travellin' Band
· 4 min
-
Knock Three Times
· 3 min
-
Superstition
· 7 min
-
All Shook Up
· 8 min
-
Let's Hear it For the Boy
· 3 min
-
At Last
· 3 min
-
Little Things Mean a Lot
· 2 min
-
Paperback Writer
· 7 min
-
Just My Imagination (Running Away With Me)
· 4 min
-
Ray of Light
· 6 min
-
Feel Like Making Love
· 3 min
-
I Got You (I Feel Good)
· 6 min
-
School's Out
· 4 min
-
We Will Rock You
· 2 min
-
Bad Day
· 4 min
-
Downtown
· 7 min
-
I Want You Back
· 5 min
Request
curl example
curl -sS \ "https://example-data.com/api/v1/songs?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/songs?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/songs.d.ts https://example-data.com/types/songs.d.ts
import type { Song, ListEnvelope } from "./types/songs";
const res = await fetch(
"https://example-data.com/api/v1/songs?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Song>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/songs",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 2089,
"albumId": 196,
"artistId": 70,
"title": "My Love",
"slug": "my-love-2089",
"trackNumber": 8,
"durationSeconds": 349,
"isExplicit": false,
"playCount": 39805638,
"createdAt": "2021-07-30T02:19:36.373Z"
},
{
"id": 2090,
"albumId": 196,
"artistId": 70,
"title": "Honky Tonk",
"slug": "honky-tonk-2090",
"trackNumber": 9,
"durationSeconds": 203,
"isExplicit": false,
"playCount": 15391834,
"createdAt": "2023-10-25T23:34:42.550Z"
},
{
"id": 2091,
"albumId": 196,
"artistId": 70,
"title": "Da Doo Ron Ron (When He Walked Me Home)",
"slug": "da-doo-ron-ron-when-he-walked-me-home-2091",
"trackNumber": 10,
"durationSeconds": 162,
"isExplicit": true,
"playCount": 31892702,
"createdAt": "2023-10-30T04:13:10.534Z"
}
],
"meta": {
"page": 88,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=88&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=89&limit=24",
"prev": "/api/v1/songs?page=87&limit=24"
}
}