example-data.com

crypto / #48

symbol
QSDJ
name
brave fax
slug
brave-fax
marketCap
5286695797
price
96.92389626
priceChangePercent24h
1.09
volume24h
90659707
circulatingSupply
54544813
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/48"
)
crypto = res.json()
{
  "id": 48,
  "symbol": "QSDJ",
  "name": "brave fax",
  "slug": "brave-fax",
  "marketCap": 5286695797,
  "price": 96.92389626,
  "priceChangePercent24h": 1.09,
  "volume24h": 90659707,
  "circulatingSupply": 54544813,
  "totalSupply": null,
  "createdAt": "2025-10-16T03:05:06.686Z"
}
Draftbit