Crustulum taceo derideo tamen
2026
jazzfolkpunk
Overview
albums / #63
2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/63" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/63" ); const album = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/albums.d.ts https://example-data.com/types/albums.d.ts
import type { Album } from "./types/albums";
const res = await fetch(
"https://example-data.com/api/v1/albums/63"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/63"
)
album = res.json() Response
{
"id": 63,
"artistId": 25,
"title": "Crustulum taceo derideo tamen",
"slug": "crustulum-taceo-derideo-tamen-63",
"releaseDate": "2026-01-23",
"trackCount": 12,
"durationSeconds": 4668,
"genres": [
"jazz",
"folk",
"punk"
],
"coverUrl": "https://picsum.photos/seed/album-63/500/500",
"createdAt": "2025-12-12T15:10:37.494Z"
}