example-data.com
Menu
Browse docs and collections

Overview

albums / #184

Demergo temperantia copia

Demergo temperantia copia

2002

hip-hop

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/albums/184" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/albums/184"
);
const album = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/albums.d.ts https://example-data.com/types/albums.d.ts
import type { Album } from "./types/albums";

const res = await fetch(
  "https://example-data.com/api/v1/albums/184"
);
const album = (await res.json()) as Album;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/albums/184"
)
album = res.json()

Response

{
  "id": 184,
  "artistId": 65,
  "title": "Demergo temperantia copia",
  "slug": "demergo-temperantia-copia-184",
  "releaseDate": "2002-01-05",
  "trackCount": 12,
  "durationSeconds": 4374,
  "genres": [
    "hip-hop"
  ],
  "coverUrl": "https://picsum.photos/seed/album-184/500/500",
  "createdAt": "2023-06-07T06:12:40.586Z"
}