example-data.com

crypto / #42

symbol
TUZS
name
elliptical mainstream
slug
elliptical-mainstream
marketCap
550149511230
price
98.33633167
priceChangePercent24h
12.97
volume24h
20868785
circulatingSupply
5594570205
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/42"
)
crypto = res.json()
{
  "id": 42,
  "symbol": "TUZS",
  "name": "elliptical mainstream",
  "slug": "elliptical-mainstream",
  "marketCap": 550149511230,
  "price": 98.33633167,
  "priceChangePercent24h": 12.97,
  "volume24h": 20868785,
  "circulatingSupply": 5594570205,
  "totalSupply": null,
  "createdAt": "2025-01-21T21:50:15.167Z"
}
Draftbit