# RSS to full article text in Markdown

**Use case:** 

Many feeds only have a short summary. This opens each article and adds the full text as Markdown and plain text, without menus, ads and footers, using the same engine as Firefox's Reader View. Ready for AI, summaries and search.

## Input

```json
{
  "feeds": [
    "https://www.nrk.no",
    "https://www.tu.no"
  ],
  "allFeedsOnPage": false,
  "maxAgeDays": 0,
  "maxItemsPerFeed": 5,
  "onlyNew": false,
  "memoryName": "default",
  "fetchFullText": true,
  "includeContentHtml": false,
  "maxConcurrency": 5
}
```

## Output

```json
{
  "published": {
    "label": "Published",
    "format": "date"
  },
  "feedTitle": {
    "label": "Feed",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "link": {
    "label": "Link",
    "format": "link"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "articleWordCount": {
    "label": "Full text words",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [RSS Feed Reader and News Monitor with Full Article Text](https://apify.com/vindr/rss-feed-reader.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vindr/rss-feed-reader.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/vindr/rss-feed-reader.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
