fetchTicker
Retrieve real-time ticker data for specified trading pairs on supported exchanges. Input exchange ID and symbol to access pricing, volume, and market information for informed cryptocurrency trading decisions.
Instructions
Fetch ticker information for a symbol on an exchange
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchangeId | Yes | Exchange ID (e.g., 'binance', 'coinbase') | |
symbol | Yes | Trading symbol (e.g., 'BTC/USDT') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"exchangeId": {
"description": "Exchange ID (e.g., 'binance', 'coinbase')",
"type": "string"
},
"symbol": {
"description": "Trading symbol (e.g., 'BTC/USDT')",
"type": "string"
}
},
"required": [
"exchangeId",
"symbol"
],
"type": "object"
}