Skip to main content
News API translates and indexes non-English articles to English, so you can:
  • Search using English keywords even when the original content is in another language
  • Find named entities (people, organizations, locations) using English names across all languages
  • Retrieve English translations alongside original content in API responses
Translation fields are available for articles published from March 12, 2025, onward, and require an NLP plan or higher.

Before you begin

Make sure you have the following:
  • An active News API key with NLP plan or higher
  • The Newscatcher SDK installed, or cURL for quick testing

Search parameters

Use search_in to target translated fields in your query, and include_translation_fields to return translated content in responses.

search_in options for translations

Use the search_in parameter to include translated content in your search: You can specify a maximum of two options in search_in. To search both original and translated content, combine them:

Translation fields in responses

Set include_translation_fields: true to receive translated content in responses. The following fields appear in each article: Original content NER fields (ner_PER, ner_ORG, ner_LOC, ner_MISC) and translation NER fields (translation_ner_*) are returned together when include_nlp_data is true.

Use cases

These examples show how to combine translation search with entity filters and country targeting to cover global news effectively.

Comprehensive multilingual coverage

Search original and translated content simultaneously for maximum global coverage. Omitting lang returns results across all languages.

Tracking international organizations across languages

Find articles about international organizations using standardized English entity names, regardless of how the organization is named in the source language. For example, "European Union" matches “Union européenne” in French and “Unión Europea” in Spanish.

Global trade policy monitoring

Combine multiple entity types with location filtering to monitor trade events across languages:

Best practices

  • Start with a basic keyword search in title_content,title_content_translated before adding entity filters and complex query logic.
  • Use official English names in quotes for organizations and locations, and combine with boolean operators for flexible matching.
  • Use the countries parameter to focus on specific regions rather than searching globally.
  • When translation accuracy is critical, verify important findings against the original-language content.

See also