example-data.com

crypto / #38

symbol
TLWZA
name
common scrap
slug
common-scrap
marketCap
196077850230
price
20.43453143
priceChangePercent24h
-6.78
volume24h
78469122
circulatingSupply
9595416998
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/38"
)
crypto = res.json()
{
  "id": 38,
  "symbol": "TLWZA",
  "name": "common scrap",
  "slug": "common-scrap",
  "marketCap": 196077850230,
  "price": 20.43453143,
  "priceChangePercent24h": -6.78,
  "volume24h": 78469122,
  "circulatingSupply": 9595416998,
  "totalSupply": null,
  "createdAt": "2025-12-13T17:11:13.479Z"
}
Draftbit