example-data.com

crypto / #19

symbol
NEAR
name
NEAR Protocol
slug
near-protocol
marketCap
4875500000
price
4.8755
priceChangePercent24h
-8.37
volume24h
3780606425
circulatingSupply
1000000000
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/19"
)
crypto = res.json()
{
  "id": 19,
  "symbol": "NEAR",
  "name": "NEAR Protocol",
  "slug": "near-protocol",
  "marketCap": 4875500000,
  "price": 4.8755,
  "priceChangePercent24h": -8.37,
  "volume24h": 3780606425,
  "circulatingSupply": 1000000000,
  "totalSupply": null,
  "createdAt": "2025-06-28T03:19:58.422Z"
}
Draftbit