Sed pecco deficio ultio
2017
punkfolk
albums / #104
2017
curl -sS \
"https://example-data.com/api/v1/albums/104" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/104"
);
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/104"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/104"
)
album = res.json() {
"id": 104,
"artistId": 40,
"title": "Sed pecco deficio ultio",
"slug": "sed-pecco-deficio-ultio-104",
"releaseDate": "2017-02-08",
"trackCount": 13,
"durationSeconds": 2661,
"genres": [
"punk",
"folk"
],
"coverUrl": "https://picsum.photos/seed/album-104/500/500",
"createdAt": "2024-02-16T15:41:42.516Z"
}