songs
songs
Page 61 of 125.
Overview
-
Hey There
· 7 min
-
Raindrops Keep Falling On My Head
· 7 min
-
Smooth
· 6 min
-
Baby Got Back
· 3 min
-
Gonna Make You Sweat (Everybody Dance Now)
· 6 min
-
I Can Dream, Can't I?
· 5 min
-
Johnny B Goode
· 5 min
-
Ain't No Sunshine
· 3 min
-
Sir Duke
· 6 min
-
Till I Waltz Again With You
· 2 min
-
Great Balls of Fire
· 5 min
-
In the Ghetto
· 3 min
-
Somethin' Stupid
· 3 min
-
My Girl
· 6 min
-
Cat's in the Cradle
· 2 min
-
Spanish Harlem
· 7 min
-
Whole Lotta Love
· 7 min
-
I Got You Babe
· 6 min
-
God Bless the Child
· 3 min
-
Auf Wiederseh'n Sweetheart
· 3 min
-
Lookin' Out My Back Door
· 6 min
-
You Make Me Feel Like Dancing
· 5 min
-
Wayward Wind
· 2 min
-
Tammy
· 6 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": 1441,
"albumId": 137,
"artistId": 50,
"title": "Hey There",
"slug": "hey-there-1441",
"trackNumber": 3,
"durationSeconds": 448,
"isExplicit": true,
"playCount": 12733370,
"createdAt": "2024-08-01T12:01:09.102Z"
},
{
"id": 1442,
"albumId": 137,
"artistId": 50,
"title": "Raindrops Keep Falling On My Head",
"slug": "raindrops-keep-falling-on-my-head-1442",
"trackNumber": 4,
"durationSeconds": 442,
"isExplicit": false,
"playCount": 8744868,
"createdAt": "2023-11-20T23:47:19.742Z"
},
{
"id": 1443,
"albumId": 137,
"artistId": 50,
"title": "Smooth",
"slug": "smooth-1443",
"trackNumber": 5,
"durationSeconds": 368,
"isExplicit": false,
"playCount": 44837257,
"createdAt": "2023-09-27T21:23:27.217Z"
}
],
"meta": {
"page": 61,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=61&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=62&limit=24",
"prev": "/api/v1/songs?page=60&limit=24"
}
}