example-data.com

crypto / #34

symbol
LULH
name
broken hexagon
slug
broken-hexagon
marketCap
175691927962
price
37.80310639
priceChangePercent24h
29.85
volume24h
24259605
circulatingSupply
4647552668
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/34"
)
crypto = res.json()
{
  "id": 34,
  "symbol": "LULH",
  "name": "broken hexagon",
  "slug": "broken-hexagon",
  "marketCap": 175691927962,
  "price": 37.80310639,
  "priceChangePercent24h": 29.85,
  "volume24h": 24259605,
  "circulatingSupply": 4647552668,
  "totalSupply": null,
  "createdAt": "2025-04-21T18:26:33.715Z"
}
Draftbit