example-data.com

albums / #14

Vetus theca

Vetus theca

2016

rockcountrymetal

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/albums/14" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/albums/14"
);
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/14"
);
const album = (await res.json()) as Album;
import requests

res = requests.get(
    "https://example-data.com/api/v1/albums/14"
)
album = res.json()
{
  "id": 14,
  "artistId": 6,
  "title": "Vetus theca",
  "slug": "vetus-theca-14",
  "releaseDate": "2016-03-30",
  "trackCount": 13,
  "durationSeconds": 2970,
  "genres": [
    "rock",
    "country",
    "metal"
  ],
  "coverUrl": "https://picsum.photos/seed/album-14/500/500",
  "createdAt": "2024-05-21T11:07:53.687Z"
}
Draftbit