Verecundia amor addo
2020
jazzmetal
Overview
albums / #247
2020
Verecundia amor addo
2020
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/247" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/247" ); 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/247"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/247"
)
album = res.json() Response
{
"id": 247,
"artistId": 87,
"title": "Verecundia amor addo",
"slug": "verecundia-amor-addo-247",
"releaseDate": "2020-08-26",
"trackCount": 11,
"durationSeconds": 2998,
"genres": [
"jazz",
"metal"
],
"coverUrl": "https://picsum.photos/seed/album-247/500/500",
"createdAt": "2026-03-13T20:19:42.174Z"
}