Cohibeo comparo thermae assentator
2020
hip-hopreggaemetal
Overview
albums / #226
2020
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/226" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/226" ); const album = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/albums.d.ts https://example-data.com/types/albums.d.ts
import type { Album } from "./types/albums";
const res = await fetch(
"https://example-data.com/api/v1/albums/226"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/226"
)
album = res.json() Response
{
"id": 226,
"artistId": 79,
"title": "Cohibeo comparo thermae assentator",
"slug": "cohibeo-comparo-thermae-assentator-226",
"releaseDate": "2020-01-06",
"trackCount": 14,
"durationSeconds": 5479,
"genres": [
"hip-hop",
"reggae",
"metal"
],
"coverUrl": "https://picsum.photos/seed/album-226/500/500",
"createdAt": "2025-05-12T23:22:02.329Z"
}