example-data.com

albums / #15

Minima somnus depopulo

Minima somnus depopulo

2002

pophip-hoppunk

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/albums/15"
)
album = res.json()
{
  "id": 15,
  "artistId": 6,
  "title": "Minima somnus depopulo",
  "slug": "minima-somnus-depopulo-15",
  "releaseDate": "2002-05-15",
  "trackCount": 8,
  "durationSeconds": 1283,
  "genres": [
    "pop",
    "hip-hop",
    "punk"
  ],
  "coverUrl": "https://picsum.photos/seed/album-15/500/500",
  "createdAt": "2024-12-07T13:31:28.901Z"
}
Draftbit