Vero deputo
2005
hip-hoprockpunk
albums / #140
2005
Vero deputo
2005
curl -sS \
"https://example-data.com/api/v1/albums/140" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/140"
);
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/140"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/140"
)
album = res.json() {
"id": 140,
"artistId": 51,
"title": "Vero deputo",
"slug": "vero-deputo-140",
"releaseDate": "2005-08-27",
"trackCount": 14,
"durationSeconds": 3219,
"genres": [
"hip-hop",
"rock",
"punk"
],
"coverUrl": "https://picsum.photos/seed/album-140/500/500",
"createdAt": "2023-09-13T07:46:52.719Z"
}