Parsez des sources RSS 2.0, Atom 1.0 et JSON Feed depuis toute URL de flux. Retourne chaque élément avec titre, auteur, lien, date de publication, contenu, résumé, catégories, pièces jointes et images en ligne. Filtrez par plage de dates ou catégorie. Construit pour la surveillance : planifiez horaire pour alimenter un agrégateur de news, une pipeline d'alerte ou une base de contenu. Idéal pour surveillance d'actualités, indexation de podcasts, suivi de blogs et alertes de mention de marque.
# Lancer une exécution via l'API Apify curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~rss-feed-reader/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "feedUrls": [ "https://techcrunch.com/feed/", "https://feeds.feedburner.com/feedburner/Techcrunch", "https://www.theverge.com/rss/index.xml", "https://hnrss.org/frontpage", "https://example-podcast.com/rss" ], "maxAgeDays": 7, "extractFullContent": true }' # Ou utiliser avec des agents IA via MCP : # https://mcp.apify.com?tools=santamaria-automations/rss-feed-reader
| Champ | Type | Exemple |
|---|---|---|
| feed_url | string | https://techcrunch.com/feed/ |
| feed_title | string | TechCrunch |
| total_items | integer | 42 |
| item_title | string | Acme lève 50M$ en Série B |
| author | string | Nom du reporter |
| published_at | string | 2026-06-13T08:42:00Z |
| link | string | https://techcrunch.com/2026/06/13/acme-series-b/ |
| content_html | string | Acme, le leader... |
| categories | array | ["startups","funding"] |
| featured_image | string | https://techcrunch.com/images/acme.jpg |
Cliquez sur Ouvrir sur Apify ci-dessus pour lancer rss-feed-reader dans votre navigateur – sans code, sans installation. Dans la console Apify, vous obtenez :
Pour lancer cet actor depuis votre propre code, il vous faut un jeton API Apify. Environ une minute :
Quota gratuit : Apify crédite votre compte de 5$ d'usage plateforme par mois, sans carte bancaire. Assez pour tester n'importe quel actor — à 0,001$ par résultat, c'est environ 5 000 résultats gratuits chaque mois.
Lancez cet actor depuis n'importe quel langage via l'API REST Apify. Remplacez YOUR_TOKEN par votre jeton API et adaptez le JSON d'entrée.
curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~rss-feed-reader/run-sync-get-dataset-items?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{}'// npm install apify-client
import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('santamaria-automations/rss-feed-reader').call({});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);# pip install apify-client
from apify_client import ApifyClient
client = ApifyClient('YOUR_TOKEN')
run = client.actor('santamaria-automations/rss-feed-reader').call(run_input={})
items = list(client.dataset(run['defaultDatasetId']).iterate_items())
print(items)// dotnet add package Apify.Client
using Apify.Client;
var client = new ApifyClient("YOUR_TOKEN");
var run = await client.Actor("santamaria-automations/rss-feed-reader").CallAsync(new { });
var items = await client.Dataset(run.DefaultDatasetId).ListItemsAsync();// Maven: com.apify:apify-client
import com.apify.client.ApifyClient;
ApifyClient client = new ApifyClient("YOUR_TOKEN");
ActorRun run = client.actor("santamaria-automations/rss-feed-reader").call(Map.of());
List<Map<String,Object>> items = client.dataset(run.getDefaultDatasetId()).listItems();Cet actor est disponible sur le serveur MCP Apify, vous pouvez donc le piloter depuis n'importe quel client IA compatible MCP – Claude Desktop, Claude.ai, Cursor, VS Code, LangChain, LlamaIndex ou un agent maison – sans écrire de code.
https://mcp.apify.com?tools=santamaria-automations/rss-feed-readerExemple de prompt une fois connecté :
"Utilise rss-feed-reader pour lancer un scrape et donne-moi les résultats sous forme de tableau."
Les clients avec découverte dynamique des outils (Claude.ai, VS Code) reçoivent le schéma d'entrée complet automatiquement via add-actor.
Déclenchez cet actor depuis votre outil d'automatisation. Toutes les plateformes ci-dessous peuvent appeler l'API Apify en quelques clics — sans code.
@apify/n8n-nodes-apify).santamaria-automations/rss-feed-reader.https://api.apify.com/v2/acts/santamaria-automations~rss-feed-reader/run-sync-get-dataset-items?token=YOUR_TOKEN.application/json.https://api.apify.com/v2/acts/santamaria-automations~rss-feed-reader/run-sync-get-dataset-items?token=YOUR_TOKEN, méthode POST, body raw JSON.https://api.apify.com/v2/acts/santamaria-automations~rss-feed-reader/run-sync-get-dataset-items?token=YOUR_TOKEN.steps.http.$return_value dans les étapes suivantes.https://api.apify.com/v2/acts/santamaria-automations~rss-feed-reader/run-sync-get-dataset-items?token=YOUR_TOKEN, body type JSON.