Skip to main content

funds()

funds(ticker: string): Promise<ApiResponse>
Get fund ownership data.
ticker
string
required
Stock ticker symbol

Example

const funds = await client.insiders.funds('AAPL');

individuals()

individuals(ticker: string): Promise<ApiResponse>
Get insider holders (individuals).
ticker
string
required
Stock ticker symbol

Example

const individuals = await client.insiders.individuals('AAPL');

institutions()

institutions(ticker: string): Promise<ApiResponse>
Get institutional ownership data.
ticker
string
required
Stock ticker symbol

Example

const institutions = await client.insiders.institutions('AAPL');

ownership()

ownership(ticker: string): Promise<ApiResponse>
Get major holders breakdown.
ticker
string
required
Stock ticker symbol

Example

const ownership = await client.insiders.ownership('AAPL');

activity()

activity(ticker: string): Promise<ApiResponse>
Get net share purchase activity.
ticker
string
required
Stock ticker symbol

Example

const activity = await client.insiders.activity('AAPL');

transactions()

transactions(ticker: string): Promise<ApiResponse>
Get insider transactions.
ticker
string
required
Stock ticker symbol

Example

const transactions = await client.insiders.transactions('AAPL');