{"name": "Competitor Price Monitor + Alert", "nodes": [{"id": "n1", "name": "Every Monday 8AM", "type": "n8n-nodes-base.scheduleTrigger", "typeVersion": 1.3, "position": [0, 0], "parameters": {"rule": {"interval": [{"triggerAtHour": 8, "mode": "everyWeek", "triggerAtDay": 1}]}}}, {"id": "n2", "name": "Check Competitor URLs", "type": "n8n-nodes-base.httpRequest", "typeVersion": 4.4, "position": [224, 0], "parameters": {"method": "GET", "url": "{{ $json.competitor_url || 'https://competitor.com/pricing' }}"}}, {"id": "n3", "name": "Analyze Changes with Claude", "type": "n8n-nodes-base.httpRequest", "typeVersion": 4.4, "position": [448, 0], "parameters": {"method": "POST", "url": "https://api.anthropic.com/v1/messages", "sendHeaders": true, "headerParameters": {"parameters": [{"name": "x-api-key", "value": "YOUR_ANTHROPIC_API_KEY"}, {"name": "anthropic-version", "value": "2023-06-01"}, {"name": "content-type", "value": "application/json"}]}, "sendBody": true, "bodyParameters": {"parameters": [{"name": "model", "value": "claude-sonnet-4-6"}, {"name": "max_tokens", "value": "600"}, {"name": "messages", "value": "=[{\"role\":\"user\",\"content\":\"Analyze this pricing page and return JSON {price_changed:bool, old_price:string, new_price:string, summary:string, action_recommended:string}. Page content: {{ $json.data.substring(0,3000) }}\"}]"}]}}}, {"id": "n4", "name": "Alert Team", "type": "n8n-nodes-base.gmail", "typeVersion": 2.2, "position": [672, 0], "parameters": {"resource": "message", "operation": "send", "sendTo": "YOUR_EMAIL@company.com", "subject": "=Competitor Update: {{ JSON.parse($json.content[0].text).summary }}", "emailType": "html", "message": "={{ JSON.parse($json.content[0].text).action_recommended }}", "options": {}}, "credentials": {"gmailOAuth2": {"id": "YOUR_GMAIL_CREDENTIAL_ID", "name": "Gmail account"}}}], "connections": {"Every Monday 8AM": {"main": [[{"node": "Check Competitor URLs", "type": "main", "index": 0}]]}, "Check Competitor URLs": {"main": [[{"node": "Analyze Changes with Claude", "type": "main", "index": 0}]]}, "Analyze Changes with Claude": {"main": [[{"node": "Alert Team", "type": "main", "index": 0}]]}}, "settings": {"executionOrder": "v1"}}