Get Current Crypto Price
binance_get_current_priceFetch live price and 24-hour trading stats for a Binance pair, including price change, high, low, and volume. Get a current snapshot for any symbol.
Instructions
Get the current price and 24-hour trading stats for a crypto trading pair from Binance.
This tool fetches a live snapshot: last traded price, 24h price change (absolute and %), 24h high/low, and 24h volume. It does NOT return historical data — use binance_get_historical_ohlc for that.
Args:
symbol (string, optional): Trading pair, e.g. "BTCUSDT". Defaults to "BTCUSDT".
Returns: { "symbol": string, "price": number, // last traded price "price_change_24h": number, // absolute change over 24h "price_change_percent_24h": number, // % change over 24h "high_24h": number, "low_24h": number, "volume_24h_base": number, // volume in base asset (e.g. BTC) "volume_24h_quote": number, // volume in quote asset (e.g. USDT) "as_of": string // ISO 8601 timestamp of this snapshot }
Examples:
Use when: "what's the current BTC price" -> symbol="BTCUSDT" (or omit, it's the default)
Use when: "check ETH price" -> symbol="ETHUSDT"
Don't use when: you need price history over time (use binance_get_historical_ohlc)
Error Handling:
Returns "Error: ..." text if the symbol is invalid or Binance is rate-limiting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | No | Trading pair symbol in Binance format, e.g. "BTCUSDT", "ETHUSDT". Defaults to "BTCUSDT". | BTCUSDT |