Skip to main content

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');