# Monitor NASA RSS Feed for Science and Mission News

**Use case:** 

Track new, changed, and removed NASA news articles that mention science or missions with this RSS feed monitor example.

## Input

```json
{
  "feedUrls": [
    {
      "url": "https://www.nasa.gov/news-release/feed/"
    }
  ],
  "includeKeywords": [
    "science",
    "mission"
  ],
  "excludeKeywords": [],
  "keywordMode": "any",
  "removalConfirmationRuns": 2,
  "maxEvents": 50,
  "requestTimeoutSecs": 30,
  "stateKey": "nasa-science-missions"
}
```

## 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.