Timor territo congregatio
1997
indiefolk
albums / #210
1997
curl -sS \
"https://example-data.com/api/v1/albums/210" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/210"
);
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/210"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/210"
)
album = res.json() {
"id": 210,
"artistId": 74,
"title": "Timor territo congregatio",
"slug": "timor-territo-congregatio-210",
"releaseDate": "1997-06-17",
"trackCount": 14,
"durationSeconds": 3434,
"genres": [
"indie",
"folk"
],
"coverUrl": "https://picsum.photos/seed/album-210/500/500",
"createdAt": "2023-07-05T14:39:03.890Z"
}