example-data.com

crypto / #11

symbol
MATIC
name
Polygon
slug
polygon
marketCap
7993536000
price
0.85952
priceChangePercent24h
-12.77
volume24h
4574752558
circulatingSupply
9300000000
totalSupply
10000000000
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/11"
)
crypto = res.json()
{
  "id": 11,
  "symbol": "MATIC",
  "name": "Polygon",
  "slug": "polygon",
  "marketCap": 7993536000,
  "price": 0.85952,
  "priceChangePercent24h": -12.77,
  "volume24h": 4574752558,
  "circulatingSupply": 9300000000,
  "totalSupply": 10000000000,
  "createdAt": "2024-07-20T02:09:28.343Z"
}
Draftbit