example-data.com

albums / #119

Iste trepide

Iste trepide

2025

popindiemetal

Component variants

Related

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"
}
Draftbit