example-data.com

crypto / #25

symbol
NFRE
name
victorious cleaner
slug
victorious-cleaner
marketCap
573877857538
price
58.60022092
priceChangePercent24h
9.98
volume24h
75099097
circulatingSupply
9793100581
totalSupply
10077486746
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/25"
)
crypto = res.json()
{
  "id": 25,
  "symbol": "NFRE",
  "name": "victorious cleaner",
  "slug": "victorious-cleaner",
  "marketCap": 573877857538,
  "price": 58.60022092,
  "priceChangePercent24h": 9.98,
  "volume24h": 75099097,
  "circulatingSupply": 9793100581,
  "totalSupply": 10077486746,
  "createdAt": "2024-12-20T15:30:51.949Z"
}
Draftbit