example-data.com

crypto / #32

symbol
SYXL
name
vast editor
slug
vast-editor
marketCap
575022524012
price
62.27287004
priceChangePercent24h
21.99
volume24h
87029287
circulatingSupply
9233917172
totalSupply
9928428239
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/32"
)
crypto = res.json()
{
  "id": 32,
  "symbol": "SYXL",
  "name": "vast editor",
  "slug": "vast-editor",
  "marketCap": 575022524012,
  "price": 62.27287004,
  "priceChangePercent24h": 21.99,
  "volume24h": 87029287,
  "circulatingSupply": 9233917172,
  "totalSupply": 9928428239,
  "createdAt": "2026-04-25T19:21:23.275Z"
}
Draftbit