example-data.com

crypto / #35

symbol
ERXEZ
name
grounded pillow
slug
grounded-pillow
marketCap
430082266880
price
59.40582685
priceChangePercent24h
11.28
volume24h
48914317
circulatingSupply
7239732021
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/35"
)
crypto = res.json()
{
  "id": 35,
  "symbol": "ERXEZ",
  "name": "grounded pillow",
  "slug": "grounded-pillow",
  "marketCap": 430082266880,
  "price": 59.40582685,
  "priceChangePercent24h": 11.28,
  "volume24h": 48914317,
  "circulatingSupply": 7239732021,
  "totalSupply": null,
  "createdAt": "2026-03-26T03:19:29.025Z"
}
Draftbit