example-data.com

crypto / #26

symbol
EZO
name
helpless armchair
slug
helpless-armchair
marketCap
245219083892
price
32.76565744
priceChangePercent24h
-18.86
volume24h
93032493
circulatingSupply
7484027578
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/26"
)
crypto = res.json()
{
  "id": 26,
  "symbol": "EZO",
  "name": "helpless armchair",
  "slug": "helpless-armchair",
  "marketCap": 245219083892,
  "price": 32.76565744,
  "priceChangePercent24h": -18.86,
  "volume24h": 93032493,
  "circulatingSupply": 7484027578,
  "totalSupply": null,
  "createdAt": "2024-08-13T20:00:20.188Z"
}
Draftbit