example-data.com

crypto / #39

symbol
MSO
name
personal cuckoo
slug
personal-cuckoo
marketCap
9524616032
price
9.84323128
priceChangePercent24h
-14.56
volume24h
85025826
circulatingSupply
967631031
totalSupply
1863198402
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/39"
)
crypto = res.json()
{
  "id": 39,
  "symbol": "MSO",
  "name": "personal cuckoo",
  "slug": "personal-cuckoo",
  "marketCap": 9524616032,
  "price": 9.84323128,
  "priceChangePercent24h": -14.56,
  "volume24h": 85025826,
  "circulatingSupply": 967631031,
  "totalSupply": 1863198402,
  "createdAt": "2024-09-04T13:59:27.219Z"
}
Draftbit