Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/axionquant/js-sdk/llms.txt

Use this file to discover all available pages before exploring further.

tickers()

tickers(params?: { exchange?: string }): Promise<ApiResponse>
Get list of available futures contracts.
params.exchange
string
Filter by exchange code

Example

const tickers = await client.futures.tickers({ exchange: 'CME' });

ticker()

ticker(ticker: string): Promise<ApiResponse>
Get detailed information for a specific futures contract.
ticker
string
required
Futures contract symbol

Example

const info = await client.futures.ticker('ES');

prices()

prices(ticker: string, params?: { from?: string, to?: string, frame?: string }): Promise<ApiResponse>
Get historical price data for a futures contract.
ticker
string
required
Futures contract symbol
params.from
string
Start date for price history
params.to
string
End date for price history
params.frame
string
Time frame (e.g., “1d”, “1h”)

Example

const prices = await client.futures.prices('ES', {
  from: '2024-01-01',
  frame: '1d'
});