Vitae
2011
r&bhip-hopindie
albums / #209
2011
Vitae
2011
curl -sS \
"https://example-data.com/api/v1/albums/209" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/albums/209"
);
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/209"
);
const album = (await res.json()) as Album;import requests
res = requests.get(
"https://example-data.com/api/v1/albums/209"
)
album = res.json() {
"id": 209,
"artistId": 74,
"title": "Vitae",
"slug": "vitae-209",
"releaseDate": "2011-03-31",
"trackCount": 9,
"durationSeconds": 2872,
"genres": [
"r&b",
"hip-hop",
"indie"
],
"coverUrl": "https://picsum.photos/seed/album-209/500/500",
"createdAt": "2024-04-18T22:04:40.292Z"
}