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.

fund()

fund(ticker: string): Promise<ApiResponse>
Get ETF fund information.
ticker
string
required
ETF ticker symbol

Example

const fundInfo = await client.etfs.fund('SPY');

holdings()

holdings(ticker: string): Promise<ApiResponse>
Get ETF holdings and portfolio composition.
ticker
string
required
ETF ticker symbol

Example

const holdings = await client.etfs.holdings('SPY');

exposure()

exposure(ticker: string): Promise<ApiResponse>
Get ETF sector and geographic exposures.
ticker
string
required
ETF ticker symbol

Example

const exposure = await client.etfs.exposure('SPY');