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.
profile()
profile(ticker: string): Promise<ApiResponse>
Get company profile information.
Example
const profile = await client.profiles.profile('AAPL');
recommendation()
recommendation(ticker: string): Promise<ApiResponse>
Get analyst recommendation trends.
Example
const recs = await client.profiles.recommendation('AAPL');
statistics()
statistics(ticker: string): Promise<ApiResponse>
Get key statistics for a company.
Example
const stats = await client.profiles.statistics('AAPL');
summary()
summary(ticker: string): Promise<ApiResponse>
Get summary details for a company.
Example
const summary = await client.profiles.summary('AAPL');
calendar()
calendar(ticker: string): Promise<ApiResponse>
Get calendar events including earnings and dividends.
Example
const events = await client.profiles.calendar('AAPL');
info()
info(ticker: string): Promise<ApiResponse>
Get company information and summary profile.
Example
const info = await client.profiles.info('AAPL');