crypto / #10
- symbol
- LINK
- name
- Chainlink
- slug
- chainlink
- marketCap
- 7903080000
- price
- 13.626
- priceChangePercent24h
- -12.89
- volume24h
- 4550344601
- circulatingSupply
- 580000000
- totalSupply
- 1000000000
- createdAt
Component variants
Medium
Chainlink
#10
Small
crypto/10 curl -sS \
"https://example-data.com/api/v1/crypto/10" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/crypto/10"
);
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/10"
);
const crypto = (await res.json()) as Crypto;import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/10"
)
crypto = res.json() {
"id": 10,
"symbol": "LINK",
"name": "Chainlink",
"slug": "chainlink",
"marketCap": 7903080000,
"price": 13.626,
"priceChangePercent24h": -12.89,
"volume24h": 4550344601,
"circulatingSupply": 580000000,
"totalSupply": 1000000000,
"createdAt": "2024-06-25T00:10:15.717Z"
}