example-data.com

crypto / #43

symbol
PQVJ
name
silent jellyfish
slug
silent-jellyfish
marketCap
235088389736
price
77.16002009
priceChangePercent24h
-7.74
volume24h
35940146
circulatingSupply
3046764237
totalSupply
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/43"
)
crypto = res.json()
{
  "id": 43,
  "symbol": "PQVJ",
  "name": "silent jellyfish",
  "slug": "silent-jellyfish",
  "marketCap": 235088389736,
  "price": 77.16002009,
  "priceChangePercent24h": -7.74,
  "volume24h": 35940146,
  "circulatingSupply": 3046764237,
  "totalSupply": null,
  "createdAt": "2025-01-15T12:59:34.854Z"
}
Draftbit