example-data.com

albums / #50

Custodia defleo synagoga

Custodia defleo synagoga

2003

indiefolk

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/albums/50"
)
album = res.json()
{
  "id": 50,
  "artistId": 20,
  "title": "Custodia defleo synagoga",
  "slug": "custodia-defleo-synagoga-50",
  "releaseDate": "2003-09-25",
  "trackCount": 9,
  "durationSeconds": 2207,
  "genres": [
    "indie",
    "folk"
  ],
  "coverUrl": "https://picsum.photos/seed/album-50/500/500",
  "createdAt": "2023-07-31T05:00:56.099Z"
}
Draftbit