example-data.com

crypto / #7

symbol
DOGE
name
Dogecoin
slug
dogecoin
marketCap
15699684000
price
0.109788
priceChangePercent24h
18.47
volume24h
2139848581
circulatingSupply
143000000000
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/7"
)
crypto = res.json()
{
  "id": 7,
  "symbol": "DOGE",
  "name": "Dogecoin",
  "slug": "dogecoin",
  "marketCap": 15699684000,
  "price": 0.109788,
  "priceChangePercent24h": 18.47,
  "volume24h": 2139848581,
  "circulatingSupply": 143000000000,
  "totalSupply": null,
  "createdAt": "2026-05-19T02:02:55.199Z"
}
Draftbit