Crustulum taceo derideo tamen
2026
jazzfolkpunk
albums / #63
2026
curl -sS \
"https://example-data.com/api/v1/albums/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/63"
);
const album = await res.json();import type { Album } from "https://example-data.com/types/albums.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/albums/63"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/63"
)
album = res.json() {
"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"
}