waiaas_hl_get_spot_markets
Retrieve Hyperliquid spot market data including trading pairs and token information for crypto trading analysis.
Instructions
Get Hyperliquid spot market list (trading pairs, token info).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The implementation of the waiaas_hl_get_spot_markets tool, which queries the Hyperliquid API for spot markets.
server.tool( 'waiaas_hl_get_spot_markets', 'Get Hyperliquid spot market list (trading pairs, token info).', {}, async () => { const result = await apiClient.get('/v1/hyperliquid/spot/markets'); return toToolResult(result); }, );