example-data.com

albums / #111

Repellat magni degero beatus

Repellat magni degero beatus

2022

rock

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/albums/111"
)
album = res.json()
{
  "id": 111,
  "artistId": 42,
  "title": "Repellat magni degero beatus",
  "slug": "repellat-magni-degero-beatus-111",
  "releaseDate": "2022-04-28",
  "trackCount": 7,
  "durationSeconds": 2563,
  "genres": [
    "rock"
  ],
  "coverUrl": "https://picsum.photos/seed/album-111/500/500",
  "createdAt": "2024-11-17T17:03:37.955Z"
}
Draftbit