example-data.com

albums / #3

Constans totidem

Constans totidem

2024

soulcountry

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/albums/3"
)
album = res.json()
{
  "id": 3,
  "artistId": 2,
  "title": "Constans totidem",
  "slug": "constans-totidem-3",
  "releaseDate": "2024-09-17",
  "trackCount": 14,
  "durationSeconds": 5561,
  "genres": [
    "soul",
    "country"
  ],
  "coverUrl": "https://picsum.photos/seed/album-3/500/500",
  "createdAt": "2023-10-15T23:31:07.648Z"
}
Draftbit