Organization Query Examples
Search for news about a specific organization
This query retrieves news articles about Google.
python
params = {
"organization.name": "Google",
"api_key": "YOUR_API_KEY"
}shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Google&api_key=YOUR_API_KEY"Search for news about multiple organizations
This query retrieves news articles about Google and Apple.
python
params = {
"organization.name": "Google,Apple",
"api_key": "YOUR_API_KEY"
}shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Google,Apple&api_key=YOUR_API_KEY"Include one organization and exclude another
This query retrieves news articles about Google but excludes articles about Apple.
python
params = {
"organization.name": "Google",
"ignore.organization.name": "Apple",
"api_key": "YOUR_API_KEY"
}shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Google&ignore.organization.name=Apple&api_key=YOUR_API_KEY"Competitive intelligence analysis
This query compares news coverage of Tesla, Google, and Amazon in technology category.
python
params = {
"organization.name": "Tesla,Google,Amazon",
"category.id": "medtop:13000000",
"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,Google,Amazon&category.id=medtop:13000000&sort.by=sentiment.overall.score&sort.order=desc&api_key=YOUR_API_KEY"Organization sentiment tracking during financial events
This query tracks sentiment of Google's coverage in business category.
python
params = {
"organization.name": "Google",
"sort.by": "published_at",
"sort.order": "asc",
"category.id": "medtop:04000000",
"api_key": "YOUR_API_KEY"
}shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Google&sort.by=published_at&sort.order=asc&category.id=medtop:04000000&api_key=YOUR_API_KEY"Corporate social responsibility coverage
This query analyzes positive coverage of tech companies' sustainability initiatives.
python
params = {
"organization.name": "Microsoft,Google,Amazon",
"title": "sustainability,ESG,green",
"sentiment.overall.polarity": "positive",
"api_key": "YOUR_API_KEY"
}shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Microsoft,Google,Amazon&title=sustainability,ESG,green&sentiment.overall.polarity=positive&api_key=YOUR_API_KEY"Executive leadership transition analysis
This query tracks coverage of leadership changes.
python
params = {
"organization.name": "Google",
"title": "CEO",
"sort.by": "published_at",
"sort.order": "asc",
"api_key": "YOUR_API_KEY"
}shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Google&title=CEO&sort.by=published_at&sort.order=asc&api_key=YOUR_API_KEY"Cross-regional organizational reputation analysis
This query compares how multinational organizations are perceived across different global markets with language-specific coverage and sentiment analysis.
python
params = {
"organization.name": "Google,Microsoft,Amazon",
"source.country.code": "us,gb,de",
"language.code": "en,de",
"sort.by": "organization.name,source.country.code,sentiment.overall.score",
"api_key": "YOUR_API_KEY"
}shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Google,Microsoft,Amazon&source.country.code=us,gb,de&language.code=en,de&sort.by=organization.name,source.country.code,sentiment.overall.score&api_key=YOUR_API_KEY"Organization industry disruption impact tracking
This query analyzes how organizations are responding to fintech disruption.
python
params = {
"organization.name": "Google,Amazon",
"title": "fintech,blockchain,cryptocurrency",
"category.id": "medtop:04000000",
"sort.by": "organization.name,published_at",
"api_key": "YOUR_API_KEY"
}shell
curl -X GET "https://api.apitube.io/v1/news/everything?organization.name=Google,Amazon&title=fintech,blockchain,cryptocurrency&category.id=medtop:04000000&sort.by=organization.name,published_at&api_key=YOUR_API_KEY"