Iste trepide
2025
popindiemetal
Overview
albums / #119
2025
Iste trepide
2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/119" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/119" ); 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/119"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/119"
)
album = res.json() Response
{
"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"
}