Skip to main content
Available as MCP tool: crypto_snapshot — call directly from Claude / Cursor / any MCP client. See MCP Server for the 60-second setup.
Live   1 credit per call

What it does for your agent

crypto_snapshot returns the current spot price for a single crypto pair plus its 24-hour change and volume. Use it as a pricing checkpoint mid-task — when an agent needs to verify current price levels, compare assets, or tag a market regime — without pulling the full klines history. crypto_snapshot({ ticker })price, dayChange, dayChangePercent, volume24h, time. That’s it.

Response

data
CryptoSnapshot
required
meta.creditsUsed
number
Credits consumed (always 1).
meta.remainingCredits
number
Account credits remaining.
200 OK · crypto_snapshot
{
  "data": {
    "ticker": "BTC-USD",
    "price": 87200.00,
    "dayChange": 1200.50,
    "dayChangePercent": 1.26,
    "volume24h": 12345678,
    "time": "2026-04-29T12:30:00Z"
  },
  "meta": { "creditsUsed": 1, "remainingCredits": 99 }
}

Notes

For historical bars, use crypto_historical_klines — it returns OHLCV candles at 1h, 4h, 1d, or 1w intervals. crypto_snapshot is only for “right now”.
Spot markets only. Futures, perpetuals, funding rates, and open interest are not exposed by this tool.
Not trading-grade real-time. It can lag the latest market print by up to 30 seconds. Don’t trade on it.

Direct invocation

{
  "method": "tools/call",
  "params": {
    "name": "crypto_snapshot",
    "arguments": { "ticker": "BTC-USD" }
  }
}

Full parameter reference

ticker
string
required
Trading pair in BASE-QUOTE format. Examples: BTC-USD, ETH-USD, SOL-USD.

Crypto Historical Klines

OHLCV candles at 1h, 4h, 1d, or 1w intervals.

Equity Snapshot

Same shape for US equities (different endpoint).