Iste trepide
2025
popindiemetal
albums / #119
2025
Iste trepide
2025
curl -sS \
"https://example-data.com/api/v1/albums/119" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/119"
);
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/119"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/119"
)
album = res.json() {
"id": 119,
"artistId": 44,
"title": "Iste trepide",
"slug": "iste-trepide-119",
"releaseDate": "2025-05-08",
"trackCount": 15,
"durationSeconds": 3132,
"genres": [
"pop",
"indie",
"metal"
],
"coverUrl": "https://picsum.photos/seed/album-119/500/500",
"createdAt": "2025-09-19T11:37:54.391Z"
}