Cotidie
2007
metal
albums / #190
2007
Cotidie
2007
curl -sS \
"https://example-data.com/api/v1/albums/190" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/190"
);
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/190"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/190"
)
album = res.json() {
"id": 190,
"artistId": 68,
"title": "Cotidie",
"slug": "cotidie-190",
"releaseDate": "2007-02-25",
"trackCount": 12,
"durationSeconds": 3750,
"genres": [
"metal"
],
"coverUrl": "https://picsum.photos/seed/album-190/500/500",
"createdAt": "2026-01-27T10:19:10.390Z"
}