example-data.com

crypto / #47

symbol
CIF
name
similar swim
slug
similar-swim
marketCap
24499503232
price
7.04050084
priceChangePercent24h
13.23
volume24h
63490751
circulatingSupply
3479795513
totalSupply
3573708054
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/47"
)
crypto = res.json()
{
  "id": 47,
  "symbol": "CIF",
  "name": "similar swim",
  "slug": "similar-swim",
  "marketCap": 24499503232,
  "price": 7.04050084,
  "priceChangePercent24h": 13.23,
  "volume24h": 63490751,
  "circulatingSupply": 3479795513,
  "totalSupply": 3573708054,
  "createdAt": "2025-08-01T15:55:04.892Z"
}
Draftbit