crypto / #41
- symbol
- TSOQ
- name
- heavy pressure
- slug
- heavy-pressure
- marketCap
- 222414841275
- price
- 72.04451103
- priceChangePercent24h
- 22.14
- volume24h
- 71868469
- circulatingSupply
- 3087186492
- totalSupply
- 3245776128
- createdAt
Component variants
Medium
heavy pressure
#41
Small
crypto/41 curl -sS \
"https://example-data.com/api/v1/crypto/41" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/crypto/41"
);
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/41"
);
const crypto = (await res.json()) as Crypto;import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/41"
)
crypto = res.json() {
"id": 41,
"symbol": "TSOQ",
"name": "heavy pressure",
"slug": "heavy-pressure",
"marketCap": 222414841275,
"price": 72.04451103,
"priceChangePercent24h": 22.14,
"volume24h": 71868469,
"circulatingSupply": 3087186492,
"totalSupply": 3245776128,
"createdAt": "2025-02-14T09:46:16.655Z"
}