example-data.com

crypto / #31

symbol
REVW
name
drab puritan
slug
drab-puritan
marketCap
436912599559
price
51.3176786
priceChangePercent24h
-17.13
volume24h
97501278
circulatingSupply
8513880820
totalSupply
8766676703
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/31"
)
crypto = res.json()
{
  "id": 31,
  "symbol": "REVW",
  "name": "drab puritan",
  "slug": "drab-puritan",
  "marketCap": 436912599559,
  "price": 51.3176786,
  "priceChangePercent24h": -17.13,
  "volume24h": 97501278,
  "circulatingSupply": 8513880820,
  "totalSupply": 8766676703,
  "createdAt": "2024-12-12T22:55:21.959Z"
}
Draftbit