example-data.com

albums / #147

Coma

Coma

2010

countryjazz

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/albums/147"
)
album = res.json()
{
  "id": 147,
  "artistId": 52,
  "title": "Coma",
  "slug": "coma-147",
  "releaseDate": "2010-11-24",
  "trackCount": 13,
  "durationSeconds": 4047,
  "genres": [
    "country",
    "jazz"
  ],
  "coverUrl": "https://picsum.photos/seed/album-147/500/500",
  "createdAt": "2024-08-22T21:09:22.960Z"
}
Draftbit