What it does

news-content runs a news search and, for each of the top articles, fetches and cleans the page text — so the response is ranked recent articles with body content already attached, not a headline list the caller has to fetch itself.

{
  "topic": "x402 payments",
  "num_articles": 2
}

returns each article with its content, capped at 4,000 characters per article:

{
  "articles": [
    {
      "title": "Agents start paying per API call",
      "url": "https://news.example.com/agent-pay",
      "source": "news.example.com",
      "published_at": "2026-07-13T00:00:00Z",
      "content": "x402 lets agents pay for API calls with stablecoins over HTTP...",
      "content_truncated": false
    }
  ]
}

Why

news-content follows the same shape as search-content, aimed specifically at news: news-search and scrape-website already exist separately in the catalog, and this is the one-call version of the workflow buyers were already running by pairing the two.

Degradation

news-search is the required leg. Each article page fetch after that is an independent optional leg: a slow or blocked page returns content: null with a note on that one article, instead of failing the whole call over one bad URL.

Price: $0.05.