Cresco abduco
2001
r&b
albums / #67
2001
Cresco abduco
2001
curl -sS \
"https://example-data.com/api/v1/albums/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/67"
);
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/67"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/67"
)
album = res.json() {
"id": 67,
"artistId": 27,
"title": "Cresco abduco",
"slug": "cresco-abduco-67",
"releaseDate": "2001-07-11",
"trackCount": 9,
"durationSeconds": 1699,
"genres": [
"r&b"
],
"coverUrl": "https://picsum.photos/seed/album-67/500/500",
"createdAt": "2023-07-25T19:10:21.111Z"
}