Damno
2019
metalcountry
Overview
albums / #49
2019
Damno
2019
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/49" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/49" ); 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/49"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/49"
)
album = res.json() Response
{
"id": 49,
"artistId": 19,
"title": "Damno",
"slug": "damno-49",
"releaseDate": "2019-02-20",
"trackCount": 13,
"durationSeconds": 5118,
"genres": [
"metal",
"country"
],
"coverUrl": "https://picsum.photos/seed/album-49/500/500",
"createdAt": "2025-10-30T05:54:00.885Z"
}