batch-get-tickers
Retrieve ticker data for multiple trading pairs in one request. Specify the exchange and market type to gather real-time price and volume information for efficient market analysis.
Instructions
Get ticker information for multiple trading pairs at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | Yes | Exchange ID (e.g., binance, coinbase) | |
marketType | No | Market type (default: spot) | |
symbols | Yes | List of trading pair symbols (e.g., ['BTC/USDT', 'ETH/USDT']) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"exchange": {
"description": "Exchange ID (e.g., binance, coinbase)",
"type": "string"
},
"marketType": {
"description": "Market type (default: spot)",
"enum": [
"spot",
"future",
"swap",
"option",
"margin"
],
"type": "string"
},
"symbols": {
"description": "List of trading pair symbols (e.g., ['BTC/USDT', 'ETH/USDT'])",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"exchange",
"symbols"
],
"type": "object"
}