songs
songs
Page 56 of 125.
Overview
-
Streets of Philadelphia
· 8 min
-
All I Have to Do is Dream
· 4 min
-
That's the Way (I Like It)
· 3 min
-
Thrift Shop
· 6 min
-
Rolling In The Deep
· 3 min
-
Baby Baby
· 6 min
-
All You Need is Love
· 2 min
-
Let Me Love You
· 2 min
-
Colors of the Wind
· 5 min
-
Tequila
· 8 min
-
Iris
· 3 min
-
Rhinestone Cowboy
· 2 min
-
Have You Ever Really Loved a Woman?
· 4 min
-
Hero
· 3 min
-
Shake Down
· 7 min
-
Night & Day
· 3 min
-
When Doves Cry
· 2 min
-
Tik-Toc
· 2 min
-
My Life
· 7 min
-
Three Coins in the Fountain
· 8 min
-
Rock the Boat
· 6 min
-
A String of Pearls
· 7 min
-
Losing My Religion
· 2 min
-
Reach Out (I'll Be There)
· 2 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": 1321,
"albumId": 125,
"artistId": 47,
"title": "Streets of Philadelphia",
"slug": "streets-of-philadelphia-1321",
"trackNumber": 2,
"durationSeconds": 479,
"isExplicit": false,
"playCount": 1287634,
"createdAt": "2025-06-29T12:34:05.889Z"
},
{
"id": 1322,
"albumId": 125,
"artistId": 47,
"title": "All I Have to Do is Dream",
"slug": "all-i-have-to-do-is-dream-1322",
"trackNumber": 3,
"durationSeconds": 240,
"isExplicit": false,
"playCount": 39318404,
"createdAt": "2024-08-11T10:30:07.530Z"
},
{
"id": 1323,
"albumId": 125,
"artistId": 47,
"title": "That's the Way (I Like It)",
"slug": "thats-the-way-i-like-it-1323",
"trackNumber": 4,
"durationSeconds": 153,
"isExplicit": false,
"playCount": 38077960,
"createdAt": "2023-01-29T16:36:57.013Z"
}
],
"meta": {
"page": 56,
"limit": 24,
"total": 2978,
"totalPages": 125
},
"links": {
"self": "/api/v1/songs?page=56&limit=24",
"first": "/api/v1/songs?page=1&limit=24",
"last": "/api/v1/songs?page=125&limit=24",
"next": "/api/v1/songs?page=57&limit=24",
"prev": "/api/v1/songs?page=55&limit=24"
}
}