get_token_price
Retrieve real-time cryptocurrency token prices using trading pair symbols like BTCUSDT or ETHUSDT. Ideal for traders and crypto enthusiasts accessing accurate price data.
Instructions
Get real-time token price info, supports symbol parameter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | No | Trading pair symbol in format like BTCUSDT, ETHUSDT, etc. Leave empty to get all symbols |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "Trading pair symbol in format like BTCUSDT, ETHUSDT, etc. Leave empty to get all symbols",
"examples": [
"BTCUSDT",
"ETHUSDT",
"BNBUSDT"
],
"pattern": "^[A-Z0-9]+$",
"type": "string"
}
},
"required": [],
"type": "object"
}