Villa saepe tergiversatio doloremque
2017
country
albums / #8
2017
curl -sS \
"https://example-data.com/api/v1/albums/8" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/8"
);
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/8"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/8"
)
album = res.json() {
"id": 8,
"artistId": 3,
"title": "Villa saepe tergiversatio doloremque",
"slug": "villa-saepe-tergiversatio-doloremque-8",
"releaseDate": "2017-03-18",
"trackCount": 7,
"durationSeconds": 1488,
"genres": [
"country"
],
"coverUrl": "https://picsum.photos/seed/album-8/500/500",
"createdAt": "2025-05-21T14:29:17.363Z"
}