example-data.com

albums / #65

Trepide astrum socius depulso

Trepide astrum socius depulso

1997

reggae

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/albums/65" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/albums/65"
);
const album = await res.json();
import type { Album } from "https://example-data.com/types/albums.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/albums/65"
);
const album = (await res.json()) as Album;
import requests

res = requests.get(
    "https://example-data.com/api/v1/albums/65"
)
album = res.json()
{
  "id": 65,
  "artistId": 26,
  "title": "Trepide astrum socius depulso",
  "slug": "trepide-astrum-socius-depulso-65",
  "releaseDate": "1997-09-02",
  "trackCount": 8,
  "durationSeconds": 2805,
  "genres": [
    "reggae"
  ],
  "coverUrl": "https://picsum.photos/seed/album-65/500/500",
  "createdAt": "2026-05-13T16:41:25.819Z"
}
Draftbit