ticker_price
Get current cryptocurrency trading prices for specific symbols to monitor market movements and inform trading decisions on the Aster exchange.
Instructions
Latest price for a symbol or symbols.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | No | Trading symbol |
Implementation Reference
- src/index.ts:611-612 (handler)Handler case for the 'ticker_price' tool, which makes a GET request to the Aster API endpoint '/fapi/v1/ticker/price' with the provided arguments.case 'ticker_price': return makeRequest('GET', '/fapi/v1/ticker/price', args);
- src/index.ts:195-204 (registration)Tool registration for 'ticker_price' in the ListTools response, including description and input schema requiring an optional 'symbol' parameter.{ name: 'ticker_price', description: 'Latest price for a symbol or symbols.', inputSchema: { type: 'object', properties: { symbol: { type: 'string', description: 'Trading symbol' }, }, }, },