example-data.com

crypto / #17

symbol
XLM
name
Stellar
slug
stellar
marketCap
3177216000
price
0.113472
priceChangePercent24h
-8.41
volume24h
1861397458
circulatingSupply
28000000000
totalSupply
50000000000
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/17"
)
crypto = res.json()
{
  "id": 17,
  "symbol": "XLM",
  "name": "Stellar",
  "slug": "stellar",
  "marketCap": 3177216000,
  "price": 0.113472,
  "priceChangePercent24h": -8.41,
  "volume24h": 1861397458,
  "circulatingSupply": 28000000000,
  "totalSupply": 50000000000,
  "createdAt": "2025-12-25T06:06:46.535Z"
}
Draftbit