example-data.com

crypto / #8

symbol
AVAX
name
Avalanche
slug
avalanche
marketCap
13630400000
price
34.076
priceChangePercent24h
-8.82
volume24h
5294663935
circulatingSupply
400000000
totalSupply
720000000
createdAt

Component variants

curl -sS \
  "https://example-data.com/api/v1/crypto/8" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/crypto/8"
);
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/8"
);
const crypto = (await res.json()) as Crypto;
import requests

res = requests.get(
    "https://example-data.com/api/v1/crypto/8"
)
crypto = res.json()
{
  "id": 8,
  "symbol": "AVAX",
  "name": "Avalanche",
  "slug": "avalanche",
  "marketCap": 13630400000,
  "price": 34.076,
  "priceChangePercent24h": -8.82,
  "volume24h": 5294663935,
  "circulatingSupply": 400000000,
  "totalSupply": 720000000,
  "createdAt": "2025-03-21T10:33:44.898Z"
}
Draftbit