Read an RSS or Atom feed as structured items
read_feedFetch any RSS, RSS/RDF or Atom feed and get back one consistent shape: title, link, ISO-8601 publication date, author, summary and categories per item, plus the feed's own title and last-build time. The three feed dialects disagree about every element name and date format; this normalises them so you never branch on feed type. Pass 'since' to return only items published after a timestamp — the cheap way to poll for what changed. Costs $0.005 USDC per call via x402 on Base.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Absolute URL of the feed itself, e.g. 'https://hnrss.org/frontpage'. | |
| limit | No | Maximum items to return. Default 20, maximum 100. | |
| since | No | ISO-8601 timestamp; return only items published at or after it. Use your last poll time. |