> ## Documentation Index
> Fetch the complete documentation index at: https://docs.axionquant.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SentimentAPI

> Market sentiment and social analytics

## all()

```typescript theme={null}
all(ticker: string): Promise<ApiResponse>
```

Get all sentiment data for a ticker.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const sentiment = await client.sentiment.all('AAPL');
```

## social()

```typescript theme={null}
social(ticker: string): Promise<ApiResponse>
```

Get social media sentiment.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const socialSentiment = await client.sentiment.social('AAPL');
```

## news()

```typescript theme={null}
news(ticker: string): Promise<ApiResponse>
```

Get news sentiment analysis.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const newsSentiment = await client.sentiment.news('AAPL');
```

## analyst()

```typescript theme={null}
analyst(ticker: string): Promise<ApiResponse>
```

Get analyst sentiment.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const analystSentiment = await client.sentiment.analyst('AAPL');
```
