example-data.com
Menu
Browse docs and collections

Overview

albums / #251

Vinco tabella armarium

Vinco tabella armarium

2026

popblues

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/albums/251" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/albums/251"
);
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/251"
);
const album = (await res.json()) as Album;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/albums/251"
)
album = res.json()

Response

{
  "id": 251,
  "artistId": 88,
  "title": "Vinco tabella armarium",
  "slug": "vinco-tabella-armarium-251",
  "releaseDate": "2026-01-03",
  "trackCount": 14,
  "durationSeconds": 4136,
  "genres": [
    "pop",
    "blues"
  ],
  "coverUrl": "https://picsum.photos/seed/album-251/500/500",
  "createdAt": "2024-04-22T11:55:51.250Z"
}