example-data.com

albums / #36

Ait

Ait

2019

jazzclassicalmetal

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/albums/36"
)
album = res.json()
{
  "id": 36,
  "artistId": 16,
  "title": "Ait",
  "slug": "ait-36",
  "releaseDate": "2019-09-19",
  "trackCount": 8,
  "durationSeconds": 1612,
  "genres": [
    "jazz",
    "classical",
    "metal"
  ],
  "coverUrl": "https://picsum.photos/seed/album-36/500/500",
  "createdAt": "2026-04-05T01:04:36.017Z"
}
Draftbit