{
  "name": "Turn Every New Blog RSS Post Into a Threads Update Automatically",
  "nodes": [
    {
      "name": "RSS Feed Trigger",
      "type": "n8n-nodes-base.rssFeedReadTrigger",
      "typeVersion": 1,
      "parameters": {
        "feedUrl": "https://example.com/feed.xml",
        "pollTimes": {
          "item": [
            {
              "mode": "everyHour"
            }
          ]
        }
      },
      "notes": "Point feedUrl at the source feed you want to watch.",
      "position": [
        260,
        300
      ]
    },
    {
      "name": "Rewrite For Platform",
      "type": "n8n-nodes-base.openAi",
      "typeVersion": 1,
      "parameters": {
        "resource": "text",
        "operation": "message",
        "modelId": "gpt-4o-mini",
        "messages": {
          "values": [
            {
              "role": "user",
              "content": "Rewrite this into a native Threads post with a strong hook and appropriate length: {{ $json.content }}"
            }
          ]
        }
      },
      "notes": "Swap in Anthropic or any LLM node if you prefer.",
      "position": [
        500,
        300
      ]
    },
    {
      "name": "Threads — Create Post",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4,
      "parameters": {
        "method": "POST",
        "url": "https://api.example.com/replace-with-real-endpoint",
        "sendBody": true,
        "options": {}
      },
      "notes": "Threads has no dedicated n8n node — use an HTTP Request to the Threads API. Post or queue as a draft for approval.",
      "position": [
        740,
        300
      ]
    },
    {
      "name": "Respond / Finish",
      "type": "n8n-nodes-base.noOp",
      "typeVersion": 1,
      "parameters": {},
      "notes": "End of flow — extend with extra steps as needed.",
      "position": [
        980,
        300
      ]
    }
  ],
  "connections": {
    "RSS Feed Trigger": {
      "main": [
        [
          {
            "node": "Rewrite For Platform",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Rewrite For Platform": {
      "main": [
        [
          {
            "node": "Threads — Create Post",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Threads — Create Post": {
      "main": [
        [
          {
            "node": "Respond / Finish",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
