crypto / #22
- symbol
- PPVJ
- name
- wobbly husband
- slug
- wobbly-husband
- marketCap
- 7771796307
- price
- 97.99078334
- priceChangePercent24h
- 17.11
- volume24h
- 8997791
- circulatingSupply
- 79311503
- totalSupply
- —
- createdAt
Component variants
Medium
wobbly husband
#22
Small
crypto/22 curl -sS \
"https://example-data.com/api/v1/crypto/22" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/crypto/22"
);
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/22"
);
const crypto = (await res.json()) as Crypto;import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/22"
)
crypto = res.json() {
"id": 22,
"symbol": "PPVJ",
"name": "wobbly husband",
"slug": "wobbly-husband",
"marketCap": 7771796307,
"price": 97.99078334,
"priceChangePercent24h": 17.11,
"volume24h": 8997791,
"circulatingSupply": 79311503,
"totalSupply": null,
"createdAt": "2025-02-22T16:46:52.665Z"
}