---
title: "Corporate social responsibility coverage analysis"
description: "Track CSR and ESG coverage for multiple organizations with sentiment and keyword filtering"
source: https://apitube.io/cookbook/corporate-social-responsibility-coverage-analysis
---

#### Input parameters

| Parameter            | Description                                    | Type    | Default | Required |
|:---------------------|:-----------------------------------------------|:--------|:--------|:---------|
| organization.name    | Multiple organizations (comma-separated).      | string  |         | Yes      |
| title                | Keywords for CSR/ESG topics (comma-separated).  | string  |         | Yes      |
| published_at.start   | Start date filter.                              | string  |         | Yes      |
| sentiment.overall.polarity | Sentiment filter.                             | string  |         | Yes      |
| source.rank.opr.min  | Minimum source quality.                         | string  |         | Yes      |
| api_key              | Your API key.                                  | string  |         | Yes      |
| per_page             | Maximum number of articles to retrieve.       | integer | 30      | No       |

#### Workflow examples

##### Request for corporate social responsibility coverage:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Microsoft,Google,Amazon&title=sustainability,ESG,green&published_at.start=2023-01-01&sentiment.overall.polarity=positive&api_key=YOUR_API_KEY"
```

##### Request for executive leadership transition analysis:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Disney&title=CEO&published_at.start=2022-01-01&published_at.end=2023-12-31&sort.by=published_at&sort.order=asc&api_key=YOUR_API_KEY"
```

---

#### Related Examples

- [Competitive intelligence analysis](/cookbook/competitive-intelligence-analysis-with-sentiment-tracking)
- [Brand reputation analysis](/cookbook/brand-reputation-analysis-across-markets)
- [Get news with positive sentiment](/cookbook/get-positive-sentiment-news)
- [Multi-dimensional sentiment analysis](/cookbook/multi-dimensional-sentiment-analysis-with-source-filtering)
- [Sort by engagement score](/cookbook/sort-articles-by-engagement-score)

