example-data.com

crypto / #29

symbol
PWFT
name
oddball negotiation
slug
oddball-negotiation
marketCap
617909249352
price
83.90795278
priceChangePercent24h
-14.85
volume24h
55365769
circulatingSupply
7364132110
totalSupply
8230985208
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/29"
)
crypto = res.json()
{
  "id": 29,
  "symbol": "PWFT",
  "name": "oddball negotiation",
  "slug": "oddball-negotiation",
  "marketCap": 617909249352,
  "price": 83.90795278,
  "priceChangePercent24h": -14.85,
  "volume24h": 55365769,
  "circulatingSupply": 7364132110,
  "totalSupply": 8230985208,
  "createdAt": "2025-03-17T19:13:15.701Z"
}
Draftbit