Statua curvo utpote
2005
classicalindie
albums / #94
2005
Statua curvo utpote
2005
curl -sS \
"https://example-data.com/api/v1/albums/94" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/94"
);
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/94"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/94"
)
album = res.json() {
"id": 94,
"artistId": 37,
"title": "Statua curvo utpote",
"slug": "statua-curvo-utpote-94",
"releaseDate": "2005-05-08",
"trackCount": 9,
"durationSeconds": 2517,
"genres": [
"classical",
"indie"
],
"coverUrl": "https://picsum.photos/seed/album-94/500/500",
"createdAt": "2024-06-03T08:04:14.341Z"
}