News API lets you find articles that mention specific URLs or domains using two dedicated parameters:Documentation Index
Fetch the complete documentation index at: https://newscatcherinc-docs.mintlify.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | What it matches |
|---|---|
all_links | Articles containing a specific full URL — for example, a particular report or article page |
all_domain_links | Articles containing any URL from a specific domain — for example, all mentions of nvidia.com |
/search/latest_headlines/authors/aggregation_count
In
GET requests, specify multiple URLs or domains as comma-separated
strings. POST requests support both comma-separated strings and arrays.Before you begin
Make sure you have the following:- An active News API key
- The Newscatcher SDK installed for your language, or cURL for quick testing
Steps
Make a URL-based search request
This example finds English-language articles about AI that mention the
NVIDIA website:
Review the response
The response includes the standard article fields plus
all_links and
all_domain_links arrays showing every URL mentioned in each article:Best practices
- Use
all_linksto find mentions of specific pages or articles. - Use
all_domain_linksto track mentions of a website regardless of the specific page. - Combine URL search with date ranges to focus on recent coverage or track changes over time.
- Add keyword filters to narrow down broad domain searches that return too many results.

