Skip to main content
Named Entity Recognition (NER) in News API lets you find articles mentioning specific people, organizations, locations, or other named entities. Entity search provides more precise results than keyword searches and works across all languages using English entity names.

Before you begin

Make sure you have the following:
  • An active News API key
  • NLP functionality enabled in your subscription plan
  • The Newscatcher SDK installed for your language, or cURL for quick testing

Steps

1

Understand entity types

News API recognizes four entity types, each available as a separate request parameter:All entity parameters support boolean operators (AND, OR, NOT), proximity search with NEAR, and count-based filtering.
2

Search by entity

Combine keywords with entity recognition in a single request. This example finds AI articles that mention OpenAI or Microsoft as organizations:
3

Review the NLP fields in the response

The response includes entity information in the nlp object for each article:
The ner_* fields show entities found in the original content with their mention counts.
4

Search entities across languages

To find entities in non-English articles, include translated content in your search. This example finds European Central Bank coverage in four languages using English entity names:
The response includes translation_ner_* fields with entities extracted from the translated content:
5

Combine multiple entity types

Combine multiple entity parameters and advanced operators for complex searches:
Use COUNT for frequency-based filtering:
Combine entity search with proximity operators:
For comprehensive global coverage, always include both title_content and title_content_translated in your search_in parameter when searching entities across languages.

See also