Antea adeptio pauper utor
2025
reggae
albums / #96
2025
curl -sS \
"https://example-data.com/api/v1/albums/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/96"
);
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/96"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/96"
)
album = res.json() {
"id": 96,
"artistId": 38,
"title": "Antea adeptio pauper utor",
"slug": "antea-adeptio-pauper-utor-96",
"releaseDate": "2025-06-02",
"trackCount": 9,
"durationSeconds": 1487,
"genres": [
"reggae"
],
"coverUrl": "https://picsum.photos/seed/album-96/500/500",
"createdAt": "2026-01-02T17:52:57.961Z"
}