Catena stips
2008
jazzr&b
Overview
albums / #55
2008
Catena stips
2008
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/55" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/55" ); 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/55"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/55"
)
album = res.json() Response
{
"id": 55,
"artistId": 22,
"title": "Catena stips",
"slug": "catena-stips-55",
"releaseDate": "2008-03-14",
"trackCount": 14,
"durationSeconds": 4962,
"genres": [
"jazz",
"r&b"
],
"coverUrl": "https://picsum.photos/seed/album-55/500/500",
"createdAt": "2024-12-14T12:07:39.896Z"
}