Quos
2002
punkmetal
Overview
albums / #83
2002
Quos
2002
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/83" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/83" ); 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/83"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/83"
)
album = res.json() Response
{
"id": 83,
"artistId": 33,
"title": "Quos",
"slug": "quos-83",
"releaseDate": "2002-10-23",
"trackCount": 11,
"durationSeconds": 3457,
"genres": [
"punk",
"metal"
],
"coverUrl": "https://picsum.photos/seed/album-83/500/500",
"createdAt": "2025-06-15T00:17:39.825Z"
}