{
  "name": "Turn 5-Star Yelp Reviews Into Social Proof on a Webflow testimonials page",
  "nodes": [
    {
      "name": "RSS Feed Trigger",
      "type": "n8n-nodes-base.rssFeedReadTrigger",
      "typeVersion": 1,
      "parameters": {
        "feedUrl": "https://example.com/feed.xml",
        "pollTimes": {
          "item": [
            {
              "mode": "everyHour"
            }
          ]
        }
      },
      "notes": "Poll Yelp for new reviews.",
      "position": [
        260,
        300
      ]
    },
    {
      "name": "Top Rating?",
      "type": "n8n-nodes-base.if",
      "typeVersion": 2,
      "parameters": {
        "conditions": {
          "conditions": [
            {
              "leftValue": "={{ $json.rating }}",
              "rightValue": "4",
              "operator": {
                "type": "number",
                "operation": "gte"
              }
            }
          ],
          "combinator": "and"
        }
      },
      "notes": "Only 4-5 star reviews continue.",
      "position": [
        500,
        300
      ]
    },
    {
      "name": "Webflow — Create Testimonial",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4,
      "parameters": {
        "method": "POST",
        "url": "https://api.example.com/replace-with-real-endpoint",
        "sendBody": true,
        "options": {}
      },
      "notes": "Webflow has no dedicated n8n node — use an HTTP Request to the Webflow API. Add a CMS testimonial item.",
      "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": "Top Rating?",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Top Rating?": {
      "main": [
        [
          {
            "node": "Webflow — Create Testimonial",
            "type": "main",
            "index": 0
          }
        ],
        []
      ]
    },
    "Webflow — Create Testimonial": {
      "main": [
        [
          {
            "node": "Respond / Finish",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
