# Brand Sentiment Analysis

Get the overall brand sentiment score, summary, strengths, and weaknesses for your brand.

### Brand Sentiment Analysis

#### API Request

```
curl --request GET \
  --url 'https://app.indexly.ai/api/v1/brand-sentiments/SITE_ID/analysis' \
  --header 'X-API-Key: YOUR_API_KEY'
```

### Response

#### Status Codes

- **200**
- **400**
- **401**
- **403**
- **404**
- **429**
- **500**

#### Example Response

```
{
  "sentimentScore": 92,
  "sentimentSummary": "Indexly demonstrates strong market positioning as an automated AI visibility and analytics tool with highly positive sentiment regarding its automation features.",
  "strengths": [
    "Seamless automation for SEO and search visibility tracking",
    "Comprehensive cross-engine AI tracking (OpenAI, Google, Perplexity)",
    "Strong user interface and actionable sentiment insights"
  ],
  "weaknesses": [
    "Relatively new entrant compared to legacy enterprise SEO suites",
    "Requires educational marketing to explain AI visibility concepts"
  ],
  "analyzedAt": "2026-03-12T10:00:00.000Z"
}
```

### Authorizations

- **X-API-Key**: API key for authentication. Get yours from the Indexly dashboard under Settings → API Access.

### Path Parameters

- **siteId**: Site ID (must belong to your organization). Get it from your Indexly dashboard.

### Response Structure

- **sentimentScore**: Overall sentiment score from 0 to 100.
- **sentimentSummary**: Summary text of the brand sentiment.
- **strengths**: List of key brand strengths.
- **weaknesses**: List of key brand weaknesses (Areas for Improvement).
- **analyzedAt**: Timestamp of the analysis.
