{
  "name": "Guida - Notifica Telegram su nuovo articolo RSS",
  "nodes": [
    {
      "parameters": {
        "feedUrl": "https://news.ycombinator.com/rss",
        "pollTimes": {
          "item": [
            { "mode": "everyMinute" }
          ]
        }
      },
      "id": "rss1",
      "name": "Nuovo articolo nel feed",
      "type": "n8n-nodes-base.rssFeedReadTrigger",
      "typeVersion": 1,
      "position": [0, 0]
    },
    {
      "parameters": {
        "method": "POST",
        "url": "https://api.telegram.org/botYOUR_BOT_TOKEN/sendMessage",
        "sendBody": true,
        "bodyParameters": {
          "parameters": [
            { "name": "chat_id", "value": "YOUR_CHAT_ID" },
            { "name": "text", "value": "={{$json.title}}\n{{$json.link}}" }
          ]
        },
        "options": {}
      },
      "id": "http1",
      "name": "Invia su Telegram",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [220, 0]
    }
  ],
  "connections": {
    "Nuovo articolo nel feed": { "main": [[{ "node": "Invia su Telegram", "type": "main", "index": 0 }]] }
  },
  "settings": { "executionOrder": "v1" }
}
