crypto / #49
- symbol
- EJY
- name
- appropriate secret
- slug
- appropriate-secret
- marketCap
- 124006209883
- price
- 22.6690196
- priceChangePercent24h
- 17.2
- volume24h
- 93909401
- circulatingSupply
- 5470294352
- totalSupply
- 5651907307
- createdAt
Component variants
Medium
appropriate secret
#49
Small
crypto/49 curl -sS \
"https://example-data.com/api/v1/crypto/49" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/crypto/49"
);
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/49"
);
const crypto = (await res.json()) as Crypto;import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/49"
)
crypto = res.json() {
"id": 49,
"symbol": "EJY",
"name": "appropriate secret",
"slug": "appropriate-secret",
"marketCap": 124006209883,
"price": 22.6690196,
"priceChangePercent24h": 17.2,
"volume24h": 93909401,
"circulatingSupply": 5470294352,
"totalSupply": 5651907307,
"createdAt": "2024-09-03T09:32:45.381Z"
}