example-data.com

crypto / #44

symbol
XVOW
name
bitter nightlife
slug
bitter-nightlife
marketCap
348373910426
price
47.24652264
priceChangePercent24h
8.57
volume24h
33695620
circulatingSupply
7373535468
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/44"
)
crypto = res.json()
{
  "id": 44,
  "symbol": "XVOW",
  "name": "bitter nightlife",
  "slug": "bitter-nightlife",
  "marketCap": 348373910426,
  "price": 47.24652264,
  "priceChangePercent24h": 8.57,
  "volume24h": 33695620,
  "circulatingSupply": 7373535468,
  "totalSupply": null,
  "createdAt": "2025-11-12T08:10:42.609Z"
}
Draftbit