# Send Only New RSS Items to AI Agents

**Use case:** 

Turn scheduled RSS and Atom checks into clean delta events for AI agents without rebuilding state or deduplication logic.

## Input

```json
{
  "feeds": [
    "https://openai.com/news/rss.xml",
    "https://huggingface.co/blog/feed.xml"
  ],
  "monitorId": "ai-product-updates-v02",
  "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.