Skip to main content

profile()

profile(ticker: string): Promise<ApiResponse>
Get company profile information.
ticker
string
required
Stock ticker symbol

Example

const profile = await client.profiles.profile('AAPL');

recommendation()

recommendation(ticker: string): Promise<ApiResponse>
Get analyst recommendation trends.
ticker
string
required
Stock ticker symbol

Example

const recs = await client.profiles.recommendation('AAPL');

statistics()

statistics(ticker: string): Promise<ApiResponse>
Get key statistics for a company.
ticker
string
required
Stock ticker symbol

Example

const stats = await client.profiles.statistics('AAPL');

summary()

summary(ticker: string): Promise<ApiResponse>
Get summary details for a company.
ticker
string
required
Stock ticker symbol

Example

const summary = await client.profiles.summary('AAPL');

calendar()

calendar(ticker: string): Promise<ApiResponse>
Get calendar events including earnings and dividends.
ticker
string
required
Stock ticker symbol

Example

const events = await client.profiles.calendar('AAPL');

info()

info(ticker: string): Promise<ApiResponse>
Get company information and summary profile.
ticker
string
required
Stock ticker symbol

Example

const info = await client.profiles.info('AAPL');