Decumbo theca
1996
punkjazzpop
albums / #134
1996
Decumbo theca
1996
curl -sS \
"https://example-data.com/api/v1/albums/134" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/134"
);
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/134"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/134"
)
album = res.json() {
"id": 134,
"artistId": 49,
"title": "Decumbo theca",
"slug": "decumbo-theca-134",
"releaseDate": "1996-07-07",
"trackCount": 14,
"durationSeconds": 3296,
"genres": [
"punk",
"jazz",
"pop"
],
"coverUrl": "https://picsum.photos/seed/album-134/500/500",
"createdAt": "2026-02-02T06:27:08.911Z"
}