example-data.com

crypto / #24

symbol
WVU
name
impossible t-shirt
slug
impossible-t-shirt
marketCap
711501334292
price
79.69757708
priceChangePercent24h
26.92
volume24h
38459408
circulatingSupply
8927515244
totalSupply
9806479950
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/24"
)
crypto = res.json()
{
  "id": 24,
  "symbol": "WVU",
  "name": "impossible t-shirt",
  "slug": "impossible-t-shirt",
  "marketCap": 711501334292,
  "price": 79.69757708,
  "priceChangePercent24h": 26.92,
  "volume24h": 38459408,
  "circulatingSupply": 8927515244,
  "totalSupply": 9806479950,
  "createdAt": "2025-03-13T04:14:39.397Z"
}
Draftbit