Culpo at
2022
reggaepop
Overview
albums / #233
2022
Culpo at
2022
Request
curl example
curl -sS \ "https://example-data.com/api/v1/albums/233" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/albums/233" ); 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/233"
);
const album = (await res.json()) as Album; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/albums/233"
)
album = res.json() Response
{
"id": 233,
"artistId": 83,
"title": "Culpo at",
"slug": "culpo-at-233",
"releaseDate": "2022-05-13",
"trackCount": 7,
"durationSeconds": 1970,
"genres": [
"reggae",
"pop"
],
"coverUrl": "https://picsum.photos/seed/album-233/500/500",
"createdAt": "2026-02-04T08:54:29.291Z"
}