# Engineering Blog RSS Feeds with Full Article Text

**Use case:** 

The newest posts from the Cloudflare, GitHub and Netflix engineering blogs, with the full article text extracted from each page, word count and reading time next to title, link and publish date. For AI and RAG pipelines, newsletter curators and researchers who need the whole article, not a snippet. Replace the feeds and schedule it daily.

## Input

```json
{
  "urls": [
    "https://blog.cloudflare.com/rss/",
    "https://github.blog/feed/",
    "https://netflixtechblog.com/feed"
  ],
  "discoverFeeds": true,
  "keywordMatch": "any",
  "matchIn": "titleSummary",
  "sinceHours": 0,
  "onlyNew": false,
  "limitPerFeed": 5,
  "maxItems": 15,
  "sortBy": "publishedDesc",
  "dedupeBy": "url",
  "fetchFullContent": true,
  "maxFullContentChars": 20000,
  "fullContentConcurrency": 3,
  "summaryMaxChars": 1000,
  "contentMaxChars": 5000,
  "includeContentHtml": false,
  "includeErrors": false
}
```

## Output

```json
{
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "feedTitle": {
    "label": "Feed",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "fullContentWordCount": {
    "label": "Words",
    "format": "number"
  },
  "readingTimeMin": {
    "label": "Read (min)",
    "format": "number"
  },
  "fullContent": {
    "label": "Article text",
    "format": "text"
  },
  "fullContentError": {
    "label": "Fetch error",
    "format": "text"
  },
  "image": {
    "label": "Image",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [RSS & Atom Feed Scraper — Any Feed to Clean JSON (Bulk)](https://apify.com/yadroo/rss-to-json.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/yadroo/rss-to-json.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/yadroo/rss-to-json.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`).
