Get breaking news
Retrieves breaking news articles and sorts them based on specified criteria.
Authorizations
Query Parameters
The sorting order of the results. Possible values are:
relevancy
: The most relevant results first.date
: The most recently published results first.rank
: The results from the highest-ranked sources first.
relevancy
, date
, rank
If true, limits the search to sources ranked in the top 1 million online websites. If false, includes unranked sources which are assigned a rank of 999999.
The lowest boundary of the rank of a news website to filter by. A lower rank indicates a more popular source.
1 <= x <= 999999
The highest boundary of the rank of a news website to filter by. A lower rank indicates a more popular source.
1 <= x <= 999999
The page number to scroll through the results. Use for pagination, as a single API response can return up to 1,000 articles.
For details, see How to paginate large datasets.
x >= 1
The number of articles to return per page.
1 <= x <= 1000
If true, includes an NLP object for each article in the response. This object provides results of NLP analysis, including article theme, summary, sentiment, tags, and named entity recognition if available.
Note: NLP coverage and analysis completeness may vary by language, with full data available for articles in English and Arabic. The include_nlp_data
parameter is available only in NLP subscription plans.
To learn more, see NLP features.
true
If true, filters results to include only articles that have NLP data.
Note: NLP coverage and analysis completeness may vary by language, with full data available for articles in English and Arabic. The has_nlp
parameter is available only in NLP subscription plans.
To learn more, see NLP features.
true
Filters articles based on their general topic, as determined by NLP analysis. To select multiple themes, use a comma-separated string.
Example: "Finance, Tech"
Note: The theme
parameter is only available if NLP is included in your subscription plan.
To learn more, see NLP features.
Available options: Business
, Economics
, Entertainment
, Finance
, Health
, Politics
, Science
, Sports
, Tech
, Crime
, Financial Crime
, Lifestyle
, Automotive
, Travel
, Weather
, General
.
Inverse of the theme
parameter. Excludes articles based on their general topic, as determined by NLP analysis. To exclude multiple themes, use a comma-separated string.
Example: "Crime, Tech"
Note: The not_theme
parameter is only available if NLP is included in your subscription plan.
To learn more, see NLP features.
Filters articles that mention specific organization names, as identified by NLP analysis. To specify multiple organizations, use a comma-separated string.
Example: "Apple, Microsoft"
Note: The ORG_entity_name
parameter is only available if NLP is included in your subscription plan.
To learn more, see Search by entity.
Filters articles that mention specific person names, as identified by NLP analysis. To specify multiple names, use a comma-separated string.
Example: "Elon Musk, Jeff Bezos"
Note: The PER_entity_name
parameter is only available if NLP is included in your subscription plan.
To learn more, see Search by entity.
Filters articles that mention specific location names, as identified by NLP analysis. To specify multiple locations, use a comma-separated string.
Example: "California, New York"
Note: The LOC_entity_name
parameter is only available if NLP is included in your subscription plan.
To learn more, see Search by entity.
Filters articles that mention other named entities not falling under person, organization, or location categories. Includes events, nationalities, products, works of art, and more. To specify multiple entities, use a comma-separated string.
Example: "Bitcoin, Blockchain"
Note: The MISC_entity_name
parameter is only available if NLP is included in your subscription plan.
To learn more, see Search by entity.
Filters articles based on the minimum sentiment score of their titles.
Range is -1.0
to 1.0
, where:
- Negative values indicate negative sentiment.
- Positive values indicate positive sentiment.
- Values close to 0 indicate neutral sentiment.
Note: The title_sentiment_min
parameter is only available if NLP is included in your subscription plan.
To learn more, see NLP features.
-1 <= x <= 1
Filters articles based on the maximum sentiment score of their titles.
Range is -1.0
to 1.0
, where:
- Negative values indicate negative sentiment.
- Positive values indicate positive sentiment.
- Values close to 0 indicate neutral sentiment.
Note: The title_sentiment_max
parameter is only available if NLP is included in your subscription plan.
To learn more, see NLP features.
-1 <= x <= 1
Filters articles based on the minimum sentiment score of their content.
Range is -1.0
to 1.0
, where:
- Negative values indicate negative sentiment.
- Positive values indicate positive sentiment.
- Values close to 0 indicate neutral sentiment.
Note: The content_sentiment_min
parameter is only available if NLP is included in your subscription plan.
To learn more, see NLP features.
-1 <= x <= 1
Filters articles based on the maximum sentiment score of their content.
Range is -1.0
to 1.0
, where:
- Negative values indicate negative sentiment.
- Positive values indicate positive sentiment.
- Values close to 0 indicate neutral sentiment.
Note: The content_sentiment_max
parameter is only available if NLP is included in your subscription plan.
To learn more, see NLP features.
-1 <= x <= 1
Response
The response model for the breaking news requests. Response field behavior:
- Required fields are guaranteed to be present and non-null.
- Optional fields may be
null
orundefined
if the data point is not presented or couldn't be extracted during processing. - To access article properties in the
articles
response array, use array index notation. For example,articles[n].title
, wheren
is the zero-based index of the article object (0, 1, 2, etc.). - The
nlp
property within the article objectarticles[n].nlp
is only available with NLP-enabled subscription plans.
The status of the response.
The total number of articles matching the search criteria.
The current page number of the results.
The total number of pages available for the given search criteria.
The number of articles per page.
A list of articles matching the search criteria.
The data model representing a single article in the Breaking news
search results.
The user input parameters for the request.
Was this page helpful?