---
title: "Brand reputation analysis across markets"
description: "Analyze brand sentiment across multiple countries with source quality filtering and time range"
source: https://apitube.io/cookbook/brand-reputation-analysis-across-markets
---

#### Input parameters

| Parameter            | Description                                    | Type    | Default | Required |
|:---------------------|:-----------------------------------------------|:--------|:--------|:---------|
| title                | Brand name to search for in article titles.    | string  |         | Yes      |
| source.country.code   | Multiple country codes (comma-separated).       | string  |         | Yes      |
| sort.by               | Sort by sentiment score.                       | string  |         | Yes      |
| sort.order            | Descending order.                               | string  |         | Yes      |
| published_at.start    | Start date for analysis period.                | string  |         | Yes      |
| source.rank.opr.min   | Minimum source quality rank.                    | string  |         | Yes      |
| api_key              | Your API key.                                  | string  |         | Yes      |
| per_page             | Maximum number of articles to retrieve.       | integer | 25      | No       |

#### Workflow examples

##### Request for brand reputation analysis across markets:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?title=Samsung&source.country.code=us,kr,in&sort.by=sentiment.overall.score&sort.order=desc&published_at.start=2023-01-01&source.rank.opr.min=6&api_key=YOUR_API_KEY"
```

##### Request for brand sponsorship impact analysis:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?title=Rolex,sponsorship,tournament&published_at.start=2023-01-01&sort.by=sentiment.overall.score&sort.order=desc&api_key=YOUR_API_KEY"
```

##### Request for brand crisis management tracking:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?title=Boeing%20737%20MAX&sentiment.overall.polarity=negative&published_at.start=2019-03-01&published_at.end=2020-12-31&sort.by=published_at&sort.order=asc&api_key=YOUR_API_KEY"
```

##### Request for multilingual brand sentiment analysis:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?language.code=en,fr,de,ja&title=Netflix&sentiment.overall.polarity=positive&published_at.start=2023-01-01&sort.by=published_at&api_key=YOUR_API_KEY"
```

---

#### Related Examples

- [Competitive intelligence analysis](/cookbook/competitive-intelligence-analysis-with-sentiment-tracking)
- [Cross-reference person with organizations](/cookbook/cross-reference-person-with-organizations-and-locations)
- [Get news with positive sentiment](/cookbook/get-positive-sentiment-news)
- [Get news from multiple countries](/cookbook/get-latest-news-articles-from-countries)
- [Get news in specific languages](/cookbook/get-news-articles-in-multiple-languages)

