Ait
2019
jazzclassicalmetal
Overview
albums / #36
2019
Ait
2019
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/36" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/36" ); 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/36"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/36"
)
album = res.json() Response
{
"id": 36,
"artistId": 16,
"title": "Ait",
"slug": "ait-36",
"releaseDate": "2019-09-19",
"trackCount": 8,
"durationSeconds": 1612,
"genres": [
"jazz",
"classical",
"metal"
],
"coverUrl": "https://picsum.photos/seed/album-36/500/500",
"createdAt": "2026-04-05T01:04:36.017Z"
}