# Give a website, get its feed items

**Use case:** 

One row per item: title, link, published date in UTC, author, summary, full text where the feed carries it, categories, image and enclosures. No feed URL needed: for each site the Actor reads the feed the page itself advertises with <link rel="alternate">, including relative links such as /rss/.

## Input

```json
{
  "urls": [
    "https://github.blog/",
    "https://blog.cloudflare.com/",
    "https://techcrunch.com/",
    "https://www.theverge.com/"
  ],
  "urlsText": "",
  "maxItemsPerFeed": 50,
  "maxItems": 1000,
  "discoverAllFeeds": false,
  "useCommonPaths": true,
  "includeContentHtml": false,
  "keywords": [],
  "keywordMatch": "any",
  "excludeKeywords": [],
  "publishedAfter": "",
  "timeoutSecs": 20,
  "maxFeedSizeMb": 20,
  "monitoringMode": false,
  "resetMonitoringState": false
}
```

## Output

```json
{
  "source": {
    "label": "source",
    "format": "string"
  },
  "status": {
    "label": "status",
    "format": "string"
  },
  "title": {
    "label": "title",
    "format": "string"
  },
  "link": {
    "label": "link",
    "format": "string"
  },
  "publishedAt": {
    "label": "publishedAt",
    "format": "string"
  },
  "publishedLocal": {
    "label": "publishedLocal",
    "format": "string"
  },
  "published": {
    "label": "published",
    "format": "string"
  },
  "updatedAt": {
    "label": "updatedAt",
    "format": "string"
  },
  "updatedLocal": {
    "label": "updatedLocal",
    "format": "string"
  },
  "updated": {
    "label": "updated",
    "format": "string"
  },
  "author": {
    "label": "author",
    "format": "string"
  },
  "authors": {
    "label": "authors",
    "format": "string"
  },
  "summary": {
    "label": "summary",
    "format": "string"
  },
  "contentText": {
    "label": "contentText",
    "format": "string"
  },
  "contentHtml": {
    "label": "contentHtml",
    "format": "string"
  },
  "hasFullContent": {
    "label": "hasFullContent",
    "format": "string"
  },
  "categories": {
    "label": "categories",
    "format": "string"
  },
  "imageUrl": {
    "label": "imageUrl",
    "format": "string"
  },
  "enclosureUrl": {
    "label": "enclosureUrl",
    "format": "string"
  },
  "enclosureType": {
    "label": "enclosureType",
    "format": "string"
  },
  "enclosureLength": {
    "label": "enclosureLength",
    "format": "string"
  },
  "enclosures": {
    "label": "enclosures",
    "format": "string"
  },
  "durationSeconds": {
    "label": "durationSeconds",
    "format": "string"
  },
  "commentsUrl": {
    "label": "commentsUrl",
    "format": "string"
  },
  "externalUrl": {
    "label": "externalUrl",
    "format": "string"
  },
  "guid": {
    "label": "guid",
    "format": "string"
  },
  "guidIsPermaLink": {
    "label": "guidIsPermaLink",
    "format": "string"
  },
  "itemKey": {
    "label": "itemKey",
    "format": "string"
  },
  "position": {
    "label": "position",
    "format": "string"
  },
  "feedTitle": {
    "label": "feedTitle",
    "format": "string"
  },
  "feedLink": {
    "label": "feedLink",
    "format": "string"
  },
  "feedLanguage": {
    "label": "feedLanguage",
    "format": "string"
  },
  "feedType": {
    "label": "feedType",
    "format": "string"
  },
  "feedUrl": {
    "label": "feedUrl",
    "format": "string"
  },
  "feedEncoding": {
    "label": "feedEncoding",
    "format": "string"
  },
  "feedItemCount": {
    "label": "feedItemCount",
    "format": "string"
  },
  "requestedUrl": {
    "label": "requestedUrl",
    "format": "string"
  },
  "foundVia": {
    "label": "foundVia",
    "format": "string"
  },
  "scrapedAt": {
    "label": "scrapedAt",
    "format": "string"
  },
  "reason": {
    "label": "reason",
    "format": "string"
  },
  "httpStatus": {
    "label": "httpStatus",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [RSS Feed Scraper - Atom & JSON Feed Reader, New Item Monitor](https://apify.com/neverempty/rss-feed-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/rss-feed-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

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

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
