Deinde conventus aegrotatio
2008
folkpop
Overview
albums / #245
2008
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/245" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/245" ); 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/245"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/245"
)
album = res.json() Response
{
"id": 245,
"artistId": 86,
"title": "Deinde conventus aegrotatio",
"slug": "deinde-conventus-aegrotatio-245",
"releaseDate": "2008-10-13",
"trackCount": 12,
"durationSeconds": 4049,
"genres": [
"folk",
"pop"
],
"coverUrl": "https://picsum.photos/seed/album-245/500/500",
"createdAt": "2025-12-20T11:41:38.752Z"
}