songs
songs
Page 54 of 125.
Overview
-
Rhinestone Cowboy
· 3 min
-
Swinging On a Star
· 3 min
-
Just Dance
· 6 min
-
Caldonia Boogie (What Makes Your Big Head So Hard)
· 4 min
-
Great Balls of Fire
· 2 min
-
In the Mood
· 4 min
-
My Sharona
· 8 min
-
Stand By Me
· 3 min
-
Rock Your Baby
· 6 min
-
All I Wanna Do
· 5 min
-
American Pie
· 2 min
-
Royals
· 3 min
-
Gimme Some Lovin'
· 2 min
-
Ain't Misbehavin'
· 4 min
-
Make Love to Me
· 7 min
-
Near You
· 2 min
-
Promiscuous
· 4 min
-
Shadow Dancing
· 5 min
-
Blue Suede Shoes
· 4 min
-
Revolution
· 3 min
-
Without Me
· 7 min
-
Two Hearts
· 7 min
-
Umbrella
· 6 min
-
Crimson & Clover
· 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": 1273,
"albumId": 120,
"artistId": 45,
"title": "Rhinestone Cowboy",
"slug": "rhinestone-cowboy-1273",
"trackNumber": 3,
"durationSeconds": 182,
"isExplicit": false,
"playCount": 28675438,
"createdAt": "2024-05-07T10:53:04.510Z"
},
{
"id": 1274,
"albumId": 120,
"artistId": 45,
"title": "Swinging On a Star",
"slug": "swinging-on-a-star-1274",
"trackNumber": 4,
"durationSeconds": 161,
"isExplicit": false,
"playCount": 22556306,
"createdAt": "2025-12-11T08:58:42.813Z"
},
{
"id": 1275,
"albumId": 120,
"artistId": 45,
"title": "Just Dance",
"slug": "just-dance-1275",
"trackNumber": 5,
"durationSeconds": 363,
"isExplicit": false,
"playCount": 12754368,
"createdAt": "2024-04-05T23:33:07.535Z"
}
],
"meta": {
"page": 54,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=54&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=55&limit=24",
"prev": "/api/v1/songs?page=53&limit=24"
}
}