Brand Sentiments
Brands Net Sentiment
Get sentiment analysis scores comparing your brand against top competitors for a given site.
GET
/api/v1/brand-sentiments/:siteId/brandsBrands Net Sentiment
cURL
curl --request GET \ --url 'https://app.indexly.ai/api/v1/brand-sentiments/SITE_ID/brands' \ --header 'X-API-Key: YOUR_API_KEY'
Response
{
"brands": [
{
"name": "Your Brand",
"website": "example.com",
"netSentiment": 80.5,
"ranking": 1
},
{
"name": "Competitor 1",
"website": "competitor.com",
"netSentiment": 65.2,
"ranking": 2
}
]
}Authorizations
X-API-Keystringheaderrequired
API key for authentication. Get yours from the Indexly dashboard under Settings → API Access
Path parameters
siteIdstringrequired
Site ID (must belong to your organization). Get it from your Indexly dashboard.
Response
200 application/jsonDefault Response
brandsarrayrequired— List of brand objects detailing their name, netSentiment score, and ranking.