Tergeo
2024
punkmetal
albums / #164
2024
Tergeo
2024
curl -sS \
"https://example-data.com/api/v1/albums/164" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/164"
);
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/164"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/164"
)
album = res.json() {
"id": 164,
"artistId": 57,
"title": "Tergeo",
"slug": "tergeo-164",
"releaseDate": "2024-04-11",
"trackCount": 15,
"durationSeconds": 4554,
"genres": [
"punk",
"metal"
],
"coverUrl": "https://picsum.photos/seed/album-164/500/500",
"createdAt": "2024-01-01T14:03:05.589Z"
}