example-data.com

albums / #24

Ait

Ait

2009

punkreggaeblues

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/albums/24"
)
album = res.json()
{
  "id": 24,
  "artistId": 10,
  "title": "Ait",
  "slug": "ait-24",
  "releaseDate": "2009-11-16",
  "trackCount": 8,
  "durationSeconds": 3087,
  "genres": [
    "punk",
    "reggae",
    "blues"
  ],
  "coverUrl": "https://picsum.photos/seed/album-24/500/500",
  "createdAt": "2023-05-30T20:48:33.460Z"
}
Draftbit