exchangeInfo
Retrieve current trading rules and symbol details for cryptocurrency futures on the Aster exchange, enabling informed trading decisions with accurate market structure information.
Instructions
Get current exchange trading rules and symbol information.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:587-588 (handler)Handler implementation for the 'exchangeInfo' tool. It makes an unauthenticated GET request to the '/fapi/v1/exchangeInfo' endpoint using the shared makeRequest function, which returns exchange trading rules and symbol information.case 'exchangeInfo': return makeRequest('GET', '/fapi/v1/exchangeInfo', {});
- src/index.ts:54-54 (registration)Registration of the 'exchangeInfo' tool in the ListTools response. Includes the tool name, description, and input schema (empty object, no parameters required).{ name: 'exchangeInfo', description: 'Get current exchange trading rules and symbol information.', inputSchema: { type: 'object', properties: {} } },
- src/index.ts:54-54 (schema)Input schema for the 'exchangeInfo' tool, defining it as an object with no properties (no input parameters).{ name: 'exchangeInfo', description: 'Get current exchange trading rules and symbol information.', inputSchema: { type: 'object', properties: {} } },