Trepide decumbo temperantia
2013
rockmetal
albums / #72
2013
curl -sS \
"https://example-data.com/api/v1/albums/72" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/72"
);
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/72"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/72"
)
album = res.json() {
"id": 72,
"artistId": 28,
"title": "Trepide decumbo temperantia",
"slug": "trepide-decumbo-temperantia-72",
"releaseDate": "2013-01-23",
"trackCount": 12,
"durationSeconds": 1771,
"genres": [
"rock",
"metal"
],
"coverUrl": "https://picsum.photos/seed/album-72/500/500",
"createdAt": "2024-10-16T19:18:49.827Z"
}