research · developer · research · rss · atom · news · aggregation · deduplication · monitoring

Multi-feed news aggregation

Merge two to eight public RSS or Atom feeds into a filtered, deduplicated, time-ordered news stream with bounded partial-failure reporting.

$0.05 USDCBasex402 v2POST

Endpoint

https://apiacre.com/v1/research/news-aggregate

Send the JSON body below. An unpaid request returns HTTP 402 with a PAYMENT-REQUIRED header; an x402-compatible buyer signs the requirement and retries with PAYMENT-SIGNATURE.

Pay $0.05 USDC and run in your browser

Input example

{
  "feeds": [
    "https://hnrss.org/frontpage",
    "https://www.nasa.gov/feed/"
  ],
  "limit": 25,
  "per_feed_limit": 20,
  "keywords": [],
  "deduplicate_by": "url_or_title"
}

Response shape

View free static sample JSON

{
  "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a",
  "service": "research.news-aggregate",
  "version": "1",
  "data": {
    "feedCount": 2,
    "successfulFeedCount": 2,
    "failedFeedCount": 0,
    "feeds": [
      {
        "requestedUrl": "https://hnrss.org/frontpage",
        "url": "https://hnrss.org/frontpage",
        "status": "ok",
        "error": null,
        "httpStatus": 200,
        "elapsedMs": 118,
        "title": "Hacker News: Front Page",
        "entryCount": 20
      },
      {
        "requestedUrl": "https://www.nasa.gov/feed/",
        "url": "https://www.nasa.gov/feed/",
        "status": "ok",
        "error": null,
        "httpStatus": 200,
        "elapsedMs": 164,
        "title": "NASA",
        "entryCount": 20
      }
    ],
    "entryCount": 25,
    "duplicatesRemoved": 1,
    "filteredOut": 0,
    "entries": [
      {
        "sourceUrl": "https://www.nasa.gov/feed/",
        "sourceTitle": "NASA",
        "title": "A structured public-news example",
        "url": "https://www.nasa.gov/example/",
        "published": "Sun, 09 Aug 2026 18:00:00 +0000",
        "publishedAt": "2026-08-09T18:00:00+00:00",
        "summary": "A normalized entry merged from one of the requested feeds.",
        "id": "https://www.nasa.gov/example/"
      }
    ],
    "retrievedAt": "2026-08-10T00:00:00+00:00"
  },
  "meta": {
    "duration_ms": 42,
    "cached": false,
    "sources": [],
    "warnings": []
  }
}

Try the payment challenge

curl -i -X POST 'https://apiacre.com/v1/research/news-aggregate' \
  -H 'content-type: application/json' \
  --data '{"feeds":["https://hnrss.org/frontpage","https://www.nasa.gov/feed/"],"limit":25,"per_feed_limit":20,"keywords":[],"deduplicate_by":"url_or_title"}'