example-data.com
Menu
Browse docs and collections

Overview

albums / #260

Et theca

Et theca

2026

metal

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 260,
  "artistId": 92,
  "title": "Et theca",
  "slug": "et-theca-260",
  "releaseDate": "2026-05-17",
  "trackCount": 6,
  "durationSeconds": 1946,
  "genres": [
    "metal"
  ],
  "coverUrl": "https://picsum.photos/seed/album-260/500/500",
  "createdAt": "2024-11-21T09:28:40.341Z"
}