crypto / #13
- symbol
- SHIB
- name
- Shiba Inu
- slug
- shiba-inu
- marketCap
- 7091560000
- price
- 0.00001204
- priceChangePercent24h
- 7.29
- volume24h
- 6019963683
- circulatingSupply
- 589000000000000
- totalSupply
- 589000000000000
- createdAt
Component variants
Medium
Shiba Inu
#13
Small
crypto/13 curl -sS \
"https://example-data.com/api/v1/crypto/13" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/crypto/13"
);
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/13"
);
const crypto = (await res.json()) as Crypto;import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/13"
)
crypto = res.json() {
"id": 13,
"symbol": "SHIB",
"name": "Shiba Inu",
"slug": "shiba-inu",
"marketCap": 7091560000,
"price": 0.00001204,
"priceChangePercent24h": 7.29,
"volume24h": 6019963683,
"circulatingSupply": 589000000000000,
"totalSupply": 589000000000000,
"createdAt": "2026-03-08T22:01:08.571Z"
}