Skip to content

Industry Query Examples

Search for news in a specific industry

This query retrieves news articles from the semiconductor industry (ID 246771).

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

Search for news across multiple industries

This query retrieves news articles from multiple related industries.

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

Industry sector performance tracking

This query tracks news about multiple industries over a year to analyze performance.

python
params = {
    "industry.id": "246771,246772",
    "published_at.start": "2023-01-01",
    "published_at.end": "2023-12-31",
    "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=246771,246772&published_at.start=2023-01-01&published_at.end=2023-12-31&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": "246771,246772",
    "title": "innovation",
    "sentiment.overall.polarity": "positive",
    "published_at.start": "2023-01-01",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?industry.id=246771,246772&title=innovation&sentiment.overall.polarity=positive&published_at.start=2023-01-01&api_key=YOUR_API_KEY"

Industry-specific sentiment analysis

This query analyzes sentiment trends in the automotive industry.

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

Industry disruption monitoring

This query monitors news about disruption in traditional industries.

python
params = {
    "industry.id": "246790,246795",
    "title": "disruption,revolution,transform",
    "published_at.start": "2023-01-01",
    "sort.by": "published_at",
    "api_key": "YOUR_API_KEY"
}
shell
curl -X GET "https://api.apitube.io/v1/news/everything?industry.id=246790,246795&title=disruption,revolution,transform&published_at.start=2023-01-01&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": "246771,246775",
    "title": "regulation,compliance,law",
    "published_at.start": "2023-01-01",
    "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=246771,246775&title=regulation,compliance,law&published_at.start=2023-01-01&sort.by=published_at&sort.order=desc&api_key=YOUR_API_KEY"