example-data.com

crypto / #6

symbol
ADA
name
Cardano
slug
cardano
marketCap
14998725000
price
0.428535
priceChangePercent24h
-3.01
volume24h
6890769104
circulatingSupply
35000000000
totalSupply
45000000000
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/6"
)
crypto = res.json()
{
  "id": 6,
  "symbol": "ADA",
  "name": "Cardano",
  "slug": "cardano",
  "marketCap": 14998725000,
  "price": 0.428535,
  "priceChangePercent24h": -3.01,
  "volume24h": 6890769104,
  "circulatingSupply": 35000000000,
  "totalSupply": 45000000000,
  "createdAt": "2026-05-12T13:09:15.782Z"
}
Draftbit