Ater
2012
classicalcountryr&b
albums / #76
2012
Ater
2012
curl -sS \
"https://example-data.com/api/v1/albums/76" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/76"
);
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/76"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/76"
)
album = res.json() {
"id": 76,
"artistId": 31,
"title": "Ater",
"slug": "ater-76",
"releaseDate": "2012-06-30",
"trackCount": 6,
"durationSeconds": 1759,
"genres": [
"classical",
"country",
"r&b"
],
"coverUrl": "https://picsum.photos/seed/album-76/500/500",
"createdAt": "2025-06-16T20:48:05.103Z"
}