Asperiores thermae
2010
hip-hop
albums / #2
2010
Asperiores thermae
2010
curl -sS \
"https://example-data.com/api/v1/albums/2" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/2"
);
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/2"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/2"
)
album = res.json() {
"id": 2,
"artistId": 1,
"title": "Asperiores thermae",
"slug": "asperiores-thermae-2",
"releaseDate": "2010-07-15",
"trackCount": 9,
"durationSeconds": 1716,
"genres": [
"hip-hop"
],
"coverUrl": "https://picsum.photos/seed/album-2/500/500",
"createdAt": "2023-07-25T15:03:43.526Z"
}