# Monitor NASA and USGS Feeds for Public-Event Intelligence

**Use case:** 

Combine NASA RSS news and USGS Atom alerts into normalized stateful events for scheduled intelligence and webhook automations.

## Input

```json
{
  "feedUrls": [
    {
      "url": "https://www.nasa.gov/news-release/feed/"
    },
    {
      "url": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/significant_month.atom"
    }
  ],
  "includeKeywords": [],
  "excludeKeywords": [
    "podcast"
  ],
  "keywordMode": "any",
  "removalConfirmationRuns": 3,
  "maxEvents": 200,
  "requestTimeoutSecs": 30,
  "stateKey": "public-event-intelligence"
}
```

## Output

```json
{
  "eventType": {
    "label": "Event",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "Article URL",
    "format": "string"
  },
  "feedTitle": {
    "label": "Feed title",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published",
    "format": "string"
  },
  "detectedAt": {
    "label": "Detected",
    "format": "string"
  },
  "changedFields": {
    "label": "Changed fields",
    "format": "array"
  },
  "missingRuns": {
    "label": "Missing runs",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [RSS Feed Article Monitor](https://apify.com/automation-lab/rss-feed-article-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/rss-feed-article-monitor) to learn more, explore other use cases, and run it yourself.