example-data.com

albums / #68

Teres

Teres

2008

punkpopr&b

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/albums/68"
)
album = res.json()
{
  "id": 68,
  "artistId": 27,
  "title": "Teres",
  "slug": "teres-68",
  "releaseDate": "2008-06-09",
  "trackCount": 8,
  "durationSeconds": 3077,
  "genres": [
    "punk",
    "pop",
    "r&b"
  ],
  "coverUrl": "https://picsum.photos/seed/album-68/500/500",
  "createdAt": "2024-10-01T07:02:43.862Z"
}
Draftbit