example-data.com

albums / #186

Sustineo volup correptius auctor

Sustineo volup correptius auctor

2013

rockcountryhip-hop

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/albums/186"
)
album = res.json()
{
  "id": 186,
  "artistId": 66,
  "title": "Sustineo volup correptius auctor",
  "slug": "sustineo-volup-correptius-auctor-186",
  "releaseDate": "2013-02-10",
  "trackCount": 6,
  "durationSeconds": 1817,
  "genres": [
    "rock",
    "country",
    "hip-hop"
  ],
  "coverUrl": "https://picsum.photos/seed/album-186/500/500",
  "createdAt": "2025-01-27T03:08:35.653Z"
}
Draftbit