Skip to content

Organization Query Examples

Search for news about a specific organization

This query retrieves news articles about Apple.

python
params = {
    "organization.name": "Apple",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Apple&api_key=YOUR_API_KEY"

Search for news about multiple organizations

This query retrieves news articles about Apple and Google.

python
params = {
    "organization.name": "Apple,Google",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Apple,Google&api_key=YOUR_API_KEY"

Include one organization and exclude another

This query retrieves news articles about Apple but excludes articles about Google.

python
params = {
    "organization.name": "Apple",
    "ignore.organization.name": "Google",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Apple&ignore.organization.name=Google&api_key=YOUR_API_KEY"

Organization reputation analysis across markets

This query compares Tesla's reputation in different global markets.

python
params = {
    "organization.name": "Tesla",
    "source.country.code": "us,de,gb",
    "sort.by": "sentiment.overall.score",
    "sort.order": "desc",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Tesla&source.country.code=us,de,gb&sort.by=sentiment.overall.score&sort.order=desc&api_key=YOUR_API_KEY"

Product launch media coverage tracking

This query tracks coverage of Apple product launches.

python
params = {
    "organization.name": "Apple",
    "title": "iPhone,iPad,MacBook",
    "sort.by": "published_at",
    "sort.order": "desc",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Apple&title=iPhone,iPad,MacBook&sort.by=published_at&sort.order=desc&api_key=YOUR_API_KEY"

Organization sponsorship impact analysis

This query analyzes top tech organizations' coverage in business context.

python
params = {
    "organization.name": "Google,Microsoft,Amazon",
    "title": "partnership,deal,investment",
    "sort.by": "sentiment.overall.score",
    "sort.order": "desc",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Google,Microsoft,Amazon&title=partnership,deal,investment&sort.by=sentiment.overall.score&sort.order=desc&api_key=YOUR_API_KEY"

Organization crisis management tracking

This query tracks Tesla's crisis management during negative coverage periods.

python
params = {
    "organization.name": "Tesla",
    "title": "recall,safety,investigation",
    "sentiment.overall.polarity": "negative",
    "sort.by": "published_at",
    "sort.order": "desc",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Tesla&title=recall,safety,investigation&sentiment.overall.polarity=negative&sort.by=published_at&sort.order=desc&api_key=YOUR_API_KEY"