example-data.com

crypto / #33

symbol
ICG
name
portly fork
slug
portly-fork
marketCap
125891952283
price
29.94000199
priceChangePercent24h
14.4
volume24h
69285104
circulatingSupply
4204807746
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/33"
)
crypto = res.json()
{
  "id": 33,
  "symbol": "ICG",
  "name": "portly fork",
  "slug": "portly-fork",
  "marketCap": 125891952283,
  "price": 29.94000199,
  "priceChangePercent24h": 14.4,
  "volume24h": 69285104,
  "circulatingSupply": 4204807746,
  "totalSupply": null,
  "createdAt": "2025-05-02T16:03:52.296Z"
}
Draftbit