example-data.com

albums / #139

Sui

Sui

1999

country

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/albums/139" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/albums/139"
);
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/139"
);
const album = (await res.json()) as Album;
import requests

res = requests.get(
    "https://example-data.com/api/v1/albums/139"
)
album = res.json()
{
  "id": 139,
  "artistId": 50,
  "title": "Sui",
  "slug": "sui-139",
  "releaseDate": "1999-04-30",
  "trackCount": 13,
  "durationSeconds": 2839,
  "genres": [
    "country"
  ],
  "coverUrl": "https://picsum.photos/seed/album-139/500/500",
  "createdAt": "2025-02-09T12:33:08.947Z"
}
Draftbit