binance_get_ticker_price
Fetch the current price for a single symbol, multiple symbols, or the full Binance market.
Instructions
Fetch the latest price for one, several, or all symbols.
Calls GET /api/v3/ticker/price. Weight: symbol → 2; omitted or symbols → 4
(fetching ALL prices is a flat weight-4 call — cheap even for the whole market).
When to Use:
For the current tick price with the least overhead of any ticker endpoint.
When NOT to Use:
For bid/ask spread — use
binance_get_book_ticker.For 24h stats (change %, volume) — use
binance_get_ticker_24h.
Returns:
Markdown: a symbol/price table, capped at 100 rows. JSON: count/shown plus prices.
Examples: params = {"symbol": "BTCUSDT"} params = {"symbols": ["BTCUSDT", "ETHUSDT"]}
Error Handling:
An unknown symbol raises Binance -1121 Invalid symbol.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |