example-data.com

crypto / #14

symbol
LTC
name
Litecoin
slug
litecoin
marketCap
5679400000
price
77.8
priceChangePercent24h
-9.65
volume24h
7107503391
circulatingSupply
73000000
totalSupply
84000000
createdAt

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/crypto/14"
)
crypto = res.json()
{
  "id": 14,
  "symbol": "LTC",
  "name": "Litecoin",
  "slug": "litecoin",
  "marketCap": 5679400000,
  "price": 77.8,
  "priceChangePercent24h": -9.65,
  "volume24h": 7107503391,
  "circulatingSupply": 73000000,
  "totalSupply": 84000000,
  "createdAt": "2025-11-11T05:35:51.563Z"
}
Draftbit