crypto / #37
- symbol
- NBH
- name
- tiny partridge
- slug
- tiny-partridge
- marketCap
- 137960982327
- price
- 76.24576431
- priceChangePercent24h
- -15.92
- volume24h
- 11707270
- circulatingSupply
- 1809424872
- totalSupply
- —
- createdAt
Component variants
Medium
tiny partridge
#37
Small
crypto/37 curl -sS \
"https://example-data.com/api/v1/crypto/37" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/crypto/37"
);
const crypto = await res.json();import type { Crypto } from "https://example-data.com/types/crypto.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/crypto/37"
);
const crypto = (await res.json()) as Crypto;import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/37"
)
crypto = res.json() {
"id": 37,
"symbol": "NBH",
"name": "tiny partridge",
"slug": "tiny-partridge",
"marketCap": 137960982327,
"price": 76.24576431,
"priceChangePercent24h": -15.92,
"volume24h": 11707270,
"circulatingSupply": 1809424872,
"totalSupply": null,
"createdAt": "2025-05-13T11:57:54.847Z"
}