example-data.com

albums / #154

A maiores

A maiores

2010

metaljazzcountry

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/albums/154"
)
album = res.json()
{
  "id": 154,
  "artistId": 54,
  "title": "A maiores",
  "slug": "a-maiores-154",
  "releaseDate": "2010-05-01",
  "trackCount": 14,
  "durationSeconds": 3167,
  "genres": [
    "metal",
    "jazz",
    "country"
  ],
  "coverUrl": "https://picsum.photos/seed/album-154/500/500",
  "createdAt": "2024-06-08T22:45:03.964Z"
}
Draftbit