---
title: "Cross-reference person with organizations and locations"
description: "Find articles mentioning specific persons in context of organizations and locations with sentiment analysis"
source: https://apitube.io/cookbook/cross-reference-person-with-organizations-and-locations
---

#### Input parameters

| Parameter        | Description                                    | Type    | Default | Required |
|:-----------------|:-----------------------------------------------|:--------|:--------|:---------|
| person.name       | Person name to search for.                     | string  |         | Yes      |
| organization.name | Organization name filter.                       | string  |         | Yes      |
| published_at.start | Start date filter.                             | string  |         | Yes      |
| sort.by          | Sort by publication date.                       | string  |         | Yes      |
| sort.order       | Descending order.                               | string  |         | Yes      |
| api_key          | Your API key.                                  | string  |         | Yes      |
| per_page         | Maximum number of articles to retrieve.       | integer | 20      | No       |

#### Workflow examples

##### Request for cross-reference person with organizations:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?person.name=Elon%20Musk&organization.name=Tesla&published_at.start=2024-01-01&sort.by=published_at&sort.order=desc&api_key=YOUR_API_KEY"
```

##### Request for person sentiment analysis across sources:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?person.name=Elon%20Musk&source.domain=cnn.com,foxnews.com,bbc.com&sort.by=sentiment.overall.score&sort.order=desc&api_key=YOUR_API_KEY"
```

##### Request for public figure controversy timeline:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?person.name=Elon%20Musk&sentiment.overall.polarity=negative&published_at.start=2023-01-01&published_at.end=2023-12-31&sort.by=published_at&sort.order=asc&api_key=YOUR_API_KEY"
```

##### Request for multi-location business impact study:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?location.name=United%20States,China,India&category.id=medtop:04000000&organization.name=Apple,Google,Microsoft&published_at.start=2023-01-01&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)
- [Entity correlation analysis](/cookbook/entity-correlation-analysis-with-time-series)
- [Get articles about Elon Musk with positive sentiment](/cookbook/positive-articles-about-elon-musk)
- [Sort by engagement score](/cookbook/sort-articles-by-engagement-score)

