Quae
2008
hip-hoppopfolk
Overview
albums / #254
2008
Quae
2008
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/254" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/254" ); 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/254"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/254"
)
album = res.json() Response
{
"id": 254,
"artistId": 89,
"title": "Quae",
"slug": "quae-254",
"releaseDate": "2008-12-29",
"trackCount": 11,
"durationSeconds": 3082,
"genres": [
"hip-hop",
"pop",
"folk"
],
"coverUrl": "https://picsum.photos/seed/album-254/500/500",
"createdAt": "2026-04-29T16:32:10.129Z"
}