---
title: "Cross-regional media bias analysis"
description: "Analyze media bias across regions for specific topics with sentiment and time filtering"
source: https://apitube.io/cookbook/cross-regional-media-bias-analysis
---

#### Input parameters

| Parameter            | Description                                    | Type    | Default | Required |
|:---------------------|:-----------------------------------------------|:--------|:--------|:---------|
| title                | Search query for topic.                         | string  |         | Yes      |
| source.country.code   | Multiple country codes (comma-separated).       | string  |         | Yes      |
| sort.by              | Sort by sentiment score.                       | string  |         | Yes      |
| published_at.start   | Start date filter.                              | string  |         | Yes      |
| published_at.end     | End date filter.                                | string  |         | Yes      |
| facet                | Enable faceting.                                 | boolean | true    | Yes      |
| facet.field          | Fields for faceting.                             | string  |         | Yes      |
| api_key              | Your API key.                                  | string  |         | Yes      |
| per_page             | Maximum number of articles to retrieve.       | integer | 50      | No       |

#### Workflow examples

##### Request for cross-regional media bias analysis:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?title=climate%20change&source.country.code=us,cn,in&sort.by=sentiment.overall.score&published_at.start=2023-01-01&published_at.end=2023-12-31&api_key=YOUR_API_KEY"
```

##### Request for media bias distribution:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?title=climate%20change&facet=true&facet.field=source.bias,source.country.id&api_key=YOUR_API_KEY"
```

---

#### Related Examples

- [Advanced faceting with multiple filters](/cookbook/advanced-faceting-with-multiple-filters)
- [Geopolitical event analysis](/cookbook/geopolitical-event-analysis-with-location-filtering)
- [Get articles with faceting for analytics](/cookbook/get-articles-with-faceting-for-analytics)
- [Cross-reference person with organizations](/cookbook/cross-reference-person-with-organizations-and-locations)
- [Sort by engagement score](/cookbook/sort-articles-by-engagement-score)

