get_24hr_ticker
Retrieve 24-hour price change statistics for one or multiple cryptocurrency trading pairs directly from Binance market data. Use to monitor asset performance and market trends efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | No | Trading pair symbol, e.g. BTCUSDT | |
symbols | No | Array of multiple trading pair symbols |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Trading pair symbol, e.g. BTCUSDT",
"type": "string"
},
"symbols": {
"description": "Array of multiple trading pair symbols",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}