example-data.com

crypto / #36

symbol
ZDOJL
name
assured junior
slug
assured-junior
marketCap
56692842720
price
43.2027974
priceChangePercent24h
-14.75
volume24h
54349800
circulatingSupply
1312249348
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/36"
)
crypto = res.json()
{
  "id": 36,
  "symbol": "ZDOJL",
  "name": "assured junior",
  "slug": "assured-junior",
  "marketCap": 56692842720,
  "price": 43.2027974,
  "priceChangePercent24h": -14.75,
  "volume24h": 54349800,
  "circulatingSupply": 1312249348,
  "totalSupply": null,
  "createdAt": "2026-01-20T13:00:12.434Z"
}
Draftbit