Skip to main content

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');