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.
all()
all(ticker: string): Promise<ApiResponse>
Get all sentiment data for a ticker.
Example
const sentiment = await client.sentiment.all('AAPL');
social()
social(ticker: string): Promise<ApiResponse>
Get social media sentiment.
Example
const socialSentiment = await client.sentiment.social('AAPL');
news()
news(ticker: string): Promise<ApiResponse>
Get news sentiment analysis.
Example
const newsSentiment = await client.sentiment.news('AAPL');
analyst()
analyst(ticker: string): Promise<ApiResponse>
Get analyst sentiment.
Example
const analystSentiment = await client.sentiment.analyst('AAPL');