Skip to main content

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.
ticker
string
required
Stock ticker symbol

Example

const sentiment = await client.sentiment.all('AAPL');

social()

social(ticker: string): Promise<ApiResponse>
Get social media sentiment.
ticker
string
required
Stock ticker symbol

Example

const socialSentiment = await client.sentiment.social('AAPL');

news()

news(ticker: string): Promise<ApiResponse>
Get news sentiment analysis.
ticker
string
required
Stock ticker symbol

Example

const newsSentiment = await client.sentiment.news('AAPL');

analyst()

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

Example

const analystSentiment = await client.sentiment.analyst('AAPL');