example-data.com

crypto / #40

symbol
DXD
name
witty mouser
slug
witty-mouser
marketCap
467571981440
price
59.38410678
priceChangePercent24h
25.58
volume24h
4543921
circulatingSupply
7873688884
totalSupply
8310000704
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/40"
)
crypto = res.json()
{
  "id": 40,
  "symbol": "DXD",
  "name": "witty mouser",
  "slug": "witty-mouser",
  "marketCap": 467571981440,
  "price": 59.38410678,
  "priceChangePercent24h": 25.58,
  "volume24h": 4543921,
  "circulatingSupply": 7873688884,
  "totalSupply": 8310000704,
  "createdAt": "2025-11-08T11:34:58.256Z"
}
Draftbit