> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# RSS Updates

Triggers a workflow when new updates are detected in a RSS feed.

**Important Notes:**

```
* Polling Limitations - This trigger checks the RSS feed at regular intervals. If items are added and then removed or modified between checks, they may not be captured.

* Detection Limitations - New feed items are identified based on their `pubDate` (publish date). If this field is missing, the item will not be recognized as new and will be ignored.

* Backdated Events - The trigger processes feed items in order of their `pubDate`, assuming that newer items have later timestamps. Once an item is captured, any item with an earlier timestamp will be skipped, even if it appears in the feed later.
```

<Note>
  Workflows with this trigger check for new events **every 5 minutes by default**. You can adjust this interval in the Trigger settings.
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                                  |
  | --------- | -------------------------------------------- |
  | URL       | The URL of the RSS feed to get updates from. |
</div>

## Sample Event

```json theme={"dark"}
{
	"title": "<string>",
	"content": "<string>",
	"link": "<string>",
	"links": [
		"<string>"
	],
	"published": "<string>",
	"publishedParsed": "<string>",
	"authors": [
		{
			"name": "<string>"
		}
	],
	"guid": "<string>",
	"image": {
		"url": "<string>"
	},
	"enclosures": [
		{
			"url": "<string>",
			"length": "<string>"
		}
	]
}
```
