# Track Software Release Notes from RSS

**Use case:** 

Monitor official Node.js and TypeScript release feeds and receive only baseline, new, or updated releases for APIs, n8n, or AI agents.

## Input

```json
{
  "feeds": [
    "https://github.com/nodejs/node/releases.atom",
    "https://github.com/microsoft/TypeScript/releases.atom"
  ],
  "monitorId": "software-release-notes-v01",
  "bootstrapMode": "emit_current",
  "maxItemsPerFeed": 20
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "feedTitle": {
    "label": "Feed title",
    "format": "string"
  },
  "feedUrl": {
    "label": "Feed URL",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "updatedAt": {
    "label": "Updated at",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "itemId": {
    "label": "Item ID",
    "format": "string"
  },
  "changeId": {
    "label": "Change ID",
    "format": "string"
  },
  "errorCode": {
    "label": "Error code",
    "format": "string"
  },
  "errorMessage": {
    "label": "Error message",
    "format": "string"
  },
  "detectedAt": {
    "label": "Detected at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [RSS & Atom Feed Monitor — Change Detection API](https://apify.com/ikoles/rss-feed-delta-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ikoles/rss-feed-delta-monitor) to learn more, explore other use cases, and run it yourself.