example-data.com

albums / #166

Tabesco

Tabesco

2015

indie

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/albums/166"
)
album = res.json()
{
  "id": 166,
  "artistId": 57,
  "title": "Tabesco",
  "slug": "tabesco-166",
  "releaseDate": "2015-11-14",
  "trackCount": 8,
  "durationSeconds": 1620,
  "genres": [
    "indie"
  ],
  "coverUrl": "https://picsum.photos/seed/album-166/500/500",
  "createdAt": "2024-02-06T22:47:19.382Z"
}
Draftbit