example-data.com

crypto / #50

symbol
LVQ
name
infatuated rawhide
slug
infatuated-rawhide
marketCap
76207663438
price
36.95516574
priceChangePercent24h
18.02
volume24h
80678833
circulatingSupply
2062165381
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/50"
)
crypto = res.json()
{
  "id": 50,
  "symbol": "LVQ",
  "name": "infatuated rawhide",
  "slug": "infatuated-rawhide",
  "marketCap": 76207663438,
  "price": 36.95516574,
  "priceChangePercent24h": 18.02,
  "volume24h": 80678833,
  "circulatingSupply": 2062165381,
  "totalSupply": null,
  "createdAt": "2024-10-06T02:25:43.931Z"
}
Draftbit