Bellum depromo campana
2004
metalindierock
Overview
albums / #232
2004
Bellum depromo campana
2004
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/232" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/232" ); 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/232"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/232"
)
album = res.json() Response
{
"id": 232,
"artistId": 82,
"title": "Bellum depromo campana",
"slug": "bellum-depromo-campana-232",
"releaseDate": "2004-05-02",
"trackCount": 12,
"durationSeconds": 3405,
"genres": [
"metal",
"indie",
"rock"
],
"coverUrl": "https://picsum.photos/seed/album-232/500/500",
"createdAt": "2024-03-17T01:07:15.474Z"
}