example-data.com

crypto / #46

symbol
GBUP
name
tricky wedding
slug
tricky-wedding
marketCap
348214982964
price
80.81484802
priceChangePercent24h
-14.76
volume24h
60821756
circulatingSupply
4308799577
totalSupply
5137140156
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/46"
)
crypto = res.json()
{
  "id": 46,
  "symbol": "GBUP",
  "name": "tricky wedding",
  "slug": "tricky-wedding",
  "marketCap": 348214982964,
  "price": 80.81484802,
  "priceChangePercent24h": -14.76,
  "volume24h": 60821756,
  "circulatingSupply": 4308799577,
  "totalSupply": 5137140156,
  "createdAt": "2026-01-31T16:52:39.101Z"
}
Draftbit