Congregatio absconditus
2015
r&brockfolk
Overview
albums / #261
2015
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/261" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/261" ); 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/261"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/261"
)
album = res.json() Response
{
"id": 261,
"artistId": 92,
"title": "Congregatio absconditus",
"slug": "congregatio-absconditus-261",
"releaseDate": "2015-07-24",
"trackCount": 15,
"durationSeconds": 3152,
"genres": [
"r&b",
"rock",
"folk"
],
"coverUrl": "https://picsum.photos/seed/album-261/500/500",
"createdAt": "2025-01-21T05:13:06.879Z"
}