Skip to content

Industry Query Examples

Search for news in a specific industry

This query retrieves news articles from the Financial Services industry (ID 400).

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

Search for news across multiple industries

This query retrieves news articles from multiple related industries.

python
params = {
    "industry.id": "400,438",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?industry.id=400,438&api_key=YOUR_API_KEY"

Industry sector performance tracking

This query tracks news about multiple industries to analyze performance.

python
params = {
    "industry.id": "400,438",
    "sort.by": "published_at",
    "sort.order": "asc",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?industry.id=400,438&sort.by=published_at&sort.order=asc&api_key=YOUR_API_KEY"

Cross-industry innovation analysis

This query analyzes positive innovation news across multiple industries.

python
params = {
    "industry.id": "1041,1137",
    "title": "innovation",
    "sentiment.overall.polarity": "positive",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?industry.id=1041,1137&title=innovation&sentiment.overall.polarity=positive&api_key=YOUR_API_KEY"

Industry-specific sentiment analysis

This query analyzes sentiment trends in the military defense industry.

python
params = {
    "industry.id": "25",
    "sort.by": "sentiment.overall.score",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?industry.id=25&sort.by=sentiment.overall.score&api_key=YOUR_API_KEY"

Industry disruption monitoring

This query monitors news about disruption in energy industries.

python
params = {
    "industry.id": "334,326",
    "title": "disruption,revolution,transform",
    "sort.by": "published_at",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?industry.id=334,326&title=disruption,revolution,transform&sort.by=published_at&api_key=YOUR_API_KEY"

Industry regulation impact analysis

This query analyzes news about regulatory impacts on specific industries.

python
params = {
    "industry.id": "400,1041",
    "title": "regulation,compliance,law",
    "sort.by": "published_at",
    "sort.order": "desc",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?industry.id=400,1041&title=regulation,compliance,law&sort.by=published_at&sort.order=desc&api_key=YOUR_API_KEY"