example-data.com

crypto / #28

symbol
KSEG
name
limited obligation
slug
limited-obligation
marketCap
59795353473
price
9.18161771
priceChangePercent24h
-6.5
volume24h
14356308
circulatingSupply
6512507421
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/28"
)
crypto = res.json()
{
  "id": 28,
  "symbol": "KSEG",
  "name": "limited obligation",
  "slug": "limited-obligation",
  "marketCap": 59795353473,
  "price": 9.18161771,
  "priceChangePercent24h": -6.5,
  "volume24h": 14356308,
  "circulatingSupply": 6512507421,
  "totalSupply": null,
  "createdAt": "2025-11-13T10:16:07.029Z"
}
Draftbit