get-ticker
Retrieve real-time ticker data for specific trading pairs on supported exchanges. Input exchange ID and symbol to access price, volume, and market trends.
Instructions
Get current ticker information for a trading pair
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | Yes | Exchange ID (e.g., binance, coinbase) | |
marketType | No | Market type (default: spot) | |
symbol | Yes | Trading pair symbol (e.g., BTC/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"
},
"symbol": {
"description": "Trading pair symbol (e.g., BTC/USDT)",
"type": "string"
}
},
"required": [
"exchange",
"symbol"
],
"type": "object"
}