example-data.com

crypto / #45

symbol
HFQJR
name
bruised agreement
slug
bruised-agreement
marketCap
105150888782
price
22.50044846
priceChangePercent24h
4.57
volume24h
45884985
circulatingSupply
4673279689
totalSupply
5185513465
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/45"
)
crypto = res.json()
{
  "id": 45,
  "symbol": "HFQJR",
  "name": "bruised agreement",
  "slug": "bruised-agreement",
  "marketCap": 105150888782,
  "price": 22.50044846,
  "priceChangePercent24h": 4.57,
  "volume24h": 45884985,
  "circulatingSupply": 4673279689,
  "totalSupply": 5185513465,
  "createdAt": "2025-12-21T16:24:29.115Z"
}
Draftbit