example-data.com

crypto / #21

symbol
EEX
name
blank graffiti
slug
blank-graffiti
marketCap
135388674129
price
14.75118854
priceChangePercent24h
-22.07
volume24h
97708988
circulatingSupply
9178153595
totalSupply
9528235679
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/21"
)
crypto = res.json()
{
  "id": 21,
  "symbol": "EEX",
  "name": "blank graffiti",
  "slug": "blank-graffiti",
  "marketCap": 135388674129,
  "price": 14.75118854,
  "priceChangePercent24h": -22.07,
  "volume24h": 97708988,
  "circulatingSupply": 9178153595,
  "totalSupply": 9528235679,
  "createdAt": "2025-12-06T05:34:27.499Z"
}
Draftbit