crypto / #18
- symbol
- FIL
- name
- Filecoin
- slug
- filecoin
- marketCap
- 2838360000
- price
- 5.0685
- priceChangePercent24h
- -5.18
- volume24h
- 3436040095
- circulatingSupply
- 560000000
- totalSupply
- 2000000000
- createdAt
Component variants
Medium
Filecoin
#18
Small
crypto/18 curl -sS \
"https://example-data.com/api/v1/crypto/18" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/crypto/18"
);
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/18"
);
const crypto = (await res.json()) as Crypto;import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/18"
)
crypto = res.json() {
"id": 18,
"symbol": "FIL",
"name": "Filecoin",
"slug": "filecoin",
"marketCap": 2838360000,
"price": 5.0685,
"priceChangePercent24h": -5.18,
"volume24h": 3436040095,
"circulatingSupply": 560000000,
"totalSupply": 2000000000,
"createdAt": "2025-12-22T09:05:51.568Z"
}