Robot de trading ICT 2025 concepto de moneda inteligente

Intermedio

Este es unMiscellaneous, AI Summarization, Multimodal AIflujo de automatización del dominio deautomatización que contiene 15 nodos.Utiliza principalmente nodos como If, Set, Code, Notion, Telegram. Bot de trading automatizado de criptomonedas usando métodos ICT, GPT-4o y Coinbase

Requisitos previos
  • Clave de API de Notion
  • Bot Token de Telegram
  • Pueden requerirse credenciales de autenticación para la API de destino
  • Clave de API de OpenAI
  • Punto final de HTTP Webhook (n8n generará automáticamente)
Vista previa del flujo de trabajo
Visualización de las conexiones entre nodos, con soporte para zoom y panorámica
Exportar flujo de trabajo
Copie la siguiente configuración JSON en n8n para importar y usar este flujo de trabajo
{
  "id": "9PtOUaYw4Zjidh7R",
  "meta": {
    "instanceId": "d226d4f84a040d022e5981c2ad7340a0fd39f59c8ca44d7b13a48fbd5f93342f"
  },
  "name": "Trading Bot ICT 2025 Smart money consept",
  "tags": [
    {
      "id": "HDMvd0JxSiPqNcVr",
      "name": "ICT Trading 2025",
      "createdAt": "2025-09-10T12:59:25.097Z",
      "updatedAt": "2025-09-10T12:59:25.097Z"
    },
    {
      "id": "JFX49nScpUTSlj2e",
      "name": "Kill Zones",
      "createdAt": "2025-09-10T12:59:25.107Z",
      "updatedAt": "2025-09-10T12:59:25.107Z"
    },
    {
      "id": "QBD39tQncdB9LzoI",
      "name": "Trading Bot",
      "createdAt": "2025-09-10T11:29:08.848Z",
      "updatedAt": "2025-09-10T11:29:08.848Z"
    },
    {
      "id": "jWhPdotlyC6ID0K9",
      "name": "Coinbase Advanced",
      "createdAt": "2025-09-10T11:29:08.852Z",
      "updatedAt": "2025-09-10T11:29:08.852Z"
    },
    {
      "id": "lPCaLfjvN74ZUTkg",
      "name": "GPT-4o",
      "createdAt": "2025-09-04T18:40:59.048Z",
      "updatedAt": "2025-09-04T18:40:59.048Z"
    },
    {
      "id": "qfh0lhvaNqmtBlcD",
      "name": "GPT-4o Analysis",
      "createdAt": "2025-09-10T11:29:08.999Z",
      "updatedAt": "2025-09-10T11:29:08.999Z"
    },
    {
      "id": "svS2JxK6BXOs6gS4",
      "name": "Smart Money Concepts",
      "createdAt": "2025-09-10T12:59:25.112Z",
      "updatedAt": "2025-09-10T12:59:25.112Z"
    }
  ],
  "nodes": [
    {
      "id": "f6cfc332-9bba-40dc-9a51-d36028f825f6",
      "name": "Extraer Datos de Señal ICT",
      "type": "n8n-nodes-base.set",
      "position": [
        0,
        0
      ],
      "parameters": {
        "values": {
          "number": [
            {
              "name": "rsi",
              "value": "={{ $json.rsi || null }}"
            },
            {
              "name": "macd",
              "value": "={{ $json.macd || null }}"
            },
            {
              "name": "volume",
              "value": "={{ $json.volume || null }}"
            }
          ],
          "string": [
            {
              "name": "symbol",
              "value": "={{ $json.symbol || $json.text?.match(/\\b[A-Z]{3,6}-[A-Z]{3,6}\\b/)?.[0] || 'BTC-USD' }}"
            },
            {
              "name": "action",
              "value": "={{ $json.action || ($json.text?.toLowerCase().includes('buy') ? 'BUY' : $json.text?.toLowerCase().includes('sell') ? 'SELL' : 'HOLD') }}"
            },
            {
              "name": "price",
              "value": "={{ $json.price || '0' }}"
            },
            {
              "name": "timestamp",
              "value": "={{ $now }}"
            },
            {
              "name": "source",
              "value": "={{ $json.source || 'Telegram_ICT' }}"
            },
            {
              "name": "quantity",
              "value": "={{ $json.quantity || '10' }}"
            },
            {
              "name": "session_time",
              "value": "={{ $now.format('HH:mm') }}"
            },
            {
              "name": "trading_session",
              "value": "={{ $now.hour() >= 0 && $now.hour() < 3 ? 'Asian_KZ' : $now.hour() >= 7 && $now.hour() < 10 ? 'London_KZ' : $now.hour() >= 12 && $now.hour() < 14 ? 'NY_KZ' : $now.hour() >= 15 && $now.hour() < 17 ? 'London_Close_KZ' : 'Off_Hours' }}"
            }
          ]
        },
        "options": {}
      },
      "typeVersion": 1
    },
    {
      "id": "737077e0-e256-45a2-a474-5de2c1b1ef3c",
      "name": "Validador de Sesión ICT",
      "type": "n8n-nodes-base.code",
      "position": [
        0,
        224
      ],
      "parameters": {
        "jsCode": "\n// ICT Session Validator - Enhanced kill zone detection\nconst inputData = $input.first().json;\nconst currentHour = new Date().getUTCHours();\nconst currentMinute = new Date().getUTCMinutes();\nconst currentTime = currentHour + (currentMinute / 60);\n\n// ICT Kill Zones 2025 (GMT times)\nconst killZones = {\n    Asian: { start: 0, end: 3, name: 'Asian_KZ', priority: 'MEDIUM', characteristics: 'Range-bound, low volatility' },\n    London: { start: 7, end: 10, name: 'London_KZ', priority: 'HIGH', characteristics: 'Trend establishment, highest volatility' },\n    NewYork: { start: 12, end: 14, name: 'NY_KZ', priority: 'HIGH', characteristics: 'Continuation moves, overlap energy' },\n    LondonClose: { start: 15, end: 17, name: 'London_Close_KZ', priority: 'MEDIUM', characteristics: 'Retracement opportunities' }\n};\n\nlet activeKillZone = 'Off_Hours';\nlet killZoneActive = false;\nlet currentZoneInfo = null;\n\nfor (const [zoneName, zone] of Object.entries(killZones)) {\n    if (currentTime >= zone.start && currentTime < zone.end) {\n        activeKillZone = zone.name;\n        killZoneActive = true;\n        currentZoneInfo = zone;\n        break;\n    }\n}\n\n// Enhanced session data\nconst enhancedData = {\n    ...inputData,\n    session_validation: {\n        current_kill_zone: activeKillZone,\n        kill_zone_active: killZoneActive,\n        zone_priority: currentZoneInfo?.priority || 'LOW',\n        zone_characteristics: currentZoneInfo?.characteristics || 'Outside trading hours',\n        gmt_time: `${currentHour.toString().padStart(2, '0')}:${currentMinute.toString().padStart(2, '0')}`,\n        trading_allowed: killZoneActive,\n        session_strength: killZoneActive ? (activeKillZone.includes('London') || activeKillZone.includes('NY') ? 0.9 : 0.6) : 0.1\n    }\n};\n\nreturn [{ json: enhancedData }];\n"
      },
      "typeVersion": 2
    },
    {
      "id": "4c0c50b2-8abc-4fb5-b5de-0eef53ee9ca8",
      "name": "Obtener Datos de Mercado de Coinbase",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        0,
        448
      ],
      "parameters": {
        "url": "https://api.coinbase.com/api/v3/brokerage/products/{{ $json.symbol }}",
        "options": {
          "timeout": 10000
        },
        "authentication": "predefinedCredentialType",
        "nodeCredentialType": "coinbaseAdvancedApi"
      },
      "typeVersion": 4.1
    },
    {
      "id": "2fbf1cab-ef41-4e0f-b542-2da47fae8174",
      "name": "Análisis de IA ICT",
      "type": "@n8n/n8n-nodes-langchain.openAi",
      "position": [
        288,
        448
      ],
      "parameters": {
        "model": "gpt-4o",
        "options": {
          "maxTokens": 1000,
          "temperature": 0.3
        },
        "messages": {
          "values": [
            {
              "role": "user",
              "content": "You are an expert ICT (Inner Circle Trader) analyst. Analyze the provided trading signal using ICT 2025 methodology and Smart Money Concepts.\n\nInput Data: {{ JSON.stringify($json, null, 2) }}\n\nProvide analysis in this exact JSON format:\n{\n  \"signal_quality\": \"HIGH|MEDIUM|LOW\",\n  \"confidence_score\": 0-100,\n  \"risk_level\": \"LOW|MEDIUM|HIGH\", \n  \"recommendation\": \"BUY|SELL|HOLD\",\n  \"reasoning\": \"Detailed ICT analysis explanation\",\n  \"stop_loss\": numerical_value,\n  \"take_profit\": numerical_value,\n  \"ict_analysis\": {\n    \"session_alignment\": true/false,\n    \"session_strength\": 0.0-1.0,\n    \"structure_break\": \"BOS|CHOCH|NONE\",\n    \"liquidity_grab\": true/false,\n    \"fair_value_gap\": true/false,\n    \"order_block_present\": true/false,\n    \"kill_zone_active\": true/false,\n    \"institutional_sentiment\": \"BULLISH|BEARISH|NEUTRAL\",\n    \"entry_model\": \"Breaker|Order Block|Fair Value Gap|Liquidity Grab\",\n    \"session_quality\": \"HIGH|MEDIUM|LOW\",\n    \"market_structure\": \"BULLISH|BEARISH|RANGING\",\n    \"smart_money_flow\": \"INTO|OUT OF|NEUTRAL\"\n  }\n}\n\nFocus on:\n1. Current Kill Zone analysis ({{ $json.session_validation.current_kill_zone }})\n2. Session strength and timing ({{ $json.session_validation.session_strength }})\n3. Market structure and liquidity levels\n4. Smart money concepts and institutional behavior\n5. Risk management based on ICT principles"
            }
          ]
        }
      },
      "typeVersion": 1.8
    },
    {
      "id": "11d8f1ff-efa1-423c-b070-036235f269c9",
      "name": "Analizar Resultados de IA ICT",
      "type": "n8n-nodes-base.code",
      "position": [
        288,
        224
      ],
      "parameters": {
        "jsCode": "\n// Enhanced ICT Analysis Parser with comprehensive error handling\nconst signalData = $input.first().json;\nlet aiResponseText;\n\ntry {\n    // Get AI response with multiple fallback attempts\n    const aiResponse = $('ICT AI Analysis').first().json;\n    aiResponseText = aiResponse.message?.content || aiResponse.content || aiResponse.text;\n\n    if (!aiResponseText) {\n        throw new Error('No AI response content found');\n    }\n\n    // Parse AI analysis JSON with enhanced fallback\n    let aiAnalysis;\n    try {\n        aiAnalysis = JSON.parse(aiResponseText);\n    } catch {\n        // Extract JSON from markdown or create fallback\n        const jsonMatch = aiResponseText.match(/```(?:json)?\\s*({[\\s\\S]*?})\\s*```/);\n        if (jsonMatch) {\n            aiAnalysis = JSON.parse(jsonMatch[1]);\n        } else {\n            // Create ICT-informed fallback analysis\n            aiAnalysis = {\n                signal_quality: signalData.session_validation?.trading_allowed ? 'MEDIUM' : 'LOW',\n                confidence_score: signalData.session_validation?.session_strength * 100 || 30,\n                risk_level: signalData.session_validation?.zone_priority === 'HIGH' ? 'MEDIUM' : 'HIGH',\n                recommendation: signalData.action || 'HOLD',\n                reasoning: `Fallback ICT analysis - Session: ${signalData.session_validation?.current_kill_zone}`,\n                stop_loss: parseFloat(signalData.price || 0) * 0.98,\n                take_profit: parseFloat(signalData.price || 0) * 1.02,\n                ict_analysis: {\n                    session_alignment: signalData.session_validation?.trading_allowed || false,\n                    session_strength: signalData.session_validation?.session_strength || 0.1,\n                    structure_break: 'NONE',\n                    liquidity_grab: false,\n                    fair_value_gap: false,\n                    order_block_present: false,\n                    kill_zone_active: signalData.session_validation?.kill_zone_active || false,\n                    institutional_sentiment: 'NEUTRAL',\n                    entry_model: 'Fallback',\n                    session_quality: signalData.session_validation?.zone_priority || 'LOW'\n                }\n            };\n        }\n    }\n\n    // Enhance with session data\n    if (aiAnalysis.ict_analysis) {\n        aiAnalysis.ict_analysis = {\n            ...aiAnalysis.ict_analysis,\n            current_kill_zone: signalData.session_validation?.current_kill_zone,\n            zone_characteristics: signalData.session_validation?.zone_characteristics,\n            gmt_time: signalData.session_validation?.gmt_time\n        };\n    }\n\n    // Create final enhanced signal\n    const enhancedSignal = {\n        ...signalData,\n        ai_analysis: aiAnalysis,\n        coinbase_data: $('Get Coinbase Market Data').first()?.json || {},\n        enhanced_metadata: {\n            processing_time: new Date().toISOString(),\n            workflow_version: '3.0_ICT_2025',\n            ai_model: 'gpt-4o',\n            ict_session: signalData.session_validation?.current_kill_zone,\n            session_valid: signalData.session_validation?.trading_allowed || false,\n            analysis_quality: 'ENHANCED'\n        }\n    };\n\n    return [{ json: enhancedSignal }];\n\n} catch (error) {\n    console.error('ICT Analysis parsing error:', error);\n\n    return [{\n        json: {\n            ...signalData,\n            ai_analysis: {\n                signal_quality: 'LOW',\n                confidence_score: 0,\n                risk_level: 'HIGH',\n                recommendation: 'HOLD',\n                reasoning: `Analysis error: ${error.message}`,\n                stop_loss: null,\n                take_profit: null,\n                ict_analysis: {\n                    session_alignment: false,\n                    session_strength: 0,\n                    structure_break: 'ERROR',\n                    error: true,\n                    current_kill_zone: signalData.session_validation?.current_kill_zone || 'Unknown'\n                }\n            },\n            error: {\n                type: 'ICT_PARSING_ERROR',\n                message: error.message,\n                timestamp: new Date().toISOString()\n            }\n        }\n    }];\n}\n"
      },
      "typeVersion": 2
    },
    {
      "id": "afe2dec4-0b10-42ce-8ae8-898c3fbad56f",
      "name": "Filtro de Calidad y Sesión ICT",
      "type": "n8n-nodes-base.if",
      "position": [
        272,
        0
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "strict"
          },
          "conditions": [
            {
              "id": "quality-check",
              "operator": {
                "type": "string",
                "operation": "notEqual"
              },
              "leftValue": "={{ $json.ai_analysis?.signal_quality }}",
              "rightValue": "LOW"
            },
            {
              "id": "confidence-check",
              "operator": {
                "type": "number",
                "operation": "gte"
              },
              "leftValue": "={{ $json.ai_analysis?.confidence_score }}",
              "rightValue": 60
            },
            {
              "id": "session-check",
              "operator": {
                "type": "boolean",
                "operation": "equal"
              },
              "leftValue": "={{ $json.session_validation?.trading_allowed }}",
              "rightValue": true
            },
            {
              "id": "ict-structure-check",
              "operator": {
                "type": "boolean",
                "operation": "equal"
              },
              "leftValue": "={{ $json.ai_analysis?.ict_analysis?.session_alignment }}",
              "rightValue": true
            }
          ],
          "combineOperation": "all"
        }
      },
      "typeVersion": 2
    },
    {
      "id": "5e266bbc-1f9d-45b6-9dab-27c3b7102d51",
      "name": "Ejecutar Operación ICT",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        528,
        0
      ],
      "parameters": {
        "url": "https://api.coinbase.com/api/v3/brokerage/orders",
        "method": "POST",
        "options": {
          "timeout": 30000
        },
        "sendBody": true,
        "sendHeaders": true,
        "authentication": "predefinedCredentialType",
        "bodyParameters": {
          "parameters": [
            {
              "name": "product_id",
              "value": "={{ $json.symbol }}"
            },
            {
              "name": "side",
              "value": "={{ $json.action.toLowerCase() }}"
            },
            {
              "name": "order_configuration",
              "value": "={{ { \"market_market_ioc\": { \"quote_size\": $json.quantity || \"10\" } } }}"
            }
          ]
        },
        "headerParameters": {
          "parameters": [
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ]
        },
        "nodeCredentialType": "coinbaseAdvancedApi"
      },
      "typeVersion": 4.1
    },
    {
      "id": "dd9eedee-05ed-4949-931f-c744ade93245",
      "name": "Crear Registro de Trading ICT",
      "type": "n8n-nodes-base.notion",
      "position": [
        784,
        0
      ],
      "parameters": {
        "simple": false,
        "resource": "databasePage",
        "databaseId": "{{ $vars.NOTION_TRADING_DB_ID }}",
        "propertiesUi": {
          "propertyValues": [
            {
              "key": "Symbol",
              "type": "title",
              "title": "={{ $json.symbol }}"
            },
            {
              "key": "Action",
              "type": "select",
              "select": "={{ $json.action }}"
            },
            {
              "key": "Confidence",
              "type": "number",
              "number": "={{ $json.ai_analysis.confidence_score }}"
            },
            {
              "key": "Kill Zone",
              "type": "rich_text",
              "rich_text": "={{ $json.session_validation.current_kill_zone }}"
            },
            {
              "key": "Price",
              "type": "number",
              "number": "={{ parseFloat($json.price || 0) }}"
            },
            {
              "key": "Timestamp",
              "date": "={{ $json.timestamp }}",
              "type": "date"
            },
            {
              "key": "Session Strength",
              "type": "number",
              "number": "={{ $json.session_validation.session_strength }}"
            },
            {
              "key": "Risk Level",
              "type": "select",
              "select": "={{ $json.ai_analysis.risk_level }}"
            }
          ]
        }
      },
      "typeVersion": 2
    },
    {
      "id": "3fc15630-1c74-49aa-b899-85ed2bd44078",
      "name": "Generar Notificación ICT",
      "type": "@n8n/n8n-nodes-langchain.openAi",
      "position": [
        992,
        0
      ],
      "parameters": {
        "model": "gpt-4o",
        "options": {
          "maxTokens": 500,
          "temperature": 0.7
        },
        "messages": {
          "values": [
            {
              "role": "user",
              "content": "Create a professional Telegram notification for this ICT trading signal:\n\nSignal Data: {{ JSON.stringify($json, null, 2) }}\n\nCreate a formatted message with:\n- Appropriate emojis and formatting\n- Key ICT analysis points\n- Clear action and confidence level\n- Session and timing information\n- Risk management details\n\nMake it concise but informative, suitable for Telegram with Markdown formatting."
            }
          ]
        }
      },
      "typeVersion": 1.8
    },
    {
      "id": "51f7928d-9f4c-4308-bbea-42e45e0b42da",
      "name": "Enviar Alerta Telegram ICT",
      "type": "n8n-nodes-base.telegram",
      "position": [
        1200,
        0
      ],
      "webhookId": "ict-notification-webhook",
      "parameters": {
        "text": "{{ $('Generate ICT Notification').first().json.message.content || $json.fallback_notification || '🎯 ICT Trade Executed\\n\\n📊 Symbol: ' + $json.symbol + '\\n🎯 Action: ' + $json.action + '\\n⏰ Kill Zone: ' + $json.ai_analysis.ict_analysis.current_kill_zone + '\\n📈 Confidence: ' + $json.ai_analysis.confidence_score + '%\\n\\n🚀 Trade processed successfully!' }}",
        "chatId": "{{ $vars.TELEGRAM_CHAT_ID }}",
        "additionalFields": {
          "parse_mode": "Markdown",
          "disable_web_page_preview": true
        }
      },
      "typeVersion": 1.1
    },
    {
      "id": "763a0244-1745-45b9-81b0-9456ce29774b",
      "name": "Registrar Señal ICT Rechazada",
      "type": "n8n-nodes-base.notion",
      "position": [
        528,
        224
      ],
      "parameters": {
        "simple": false,
        "resource": "databasePage",
        "databaseId": "{{ $vars.NOTION_REJECTED_DB_ID }}",
        "propertiesUi": {
          "propertyValues": [
            {
              "key": "Symbol",
              "type": "title",
              "title": "={{ $json.symbol }}"
            },
            {
              "key": "Rejection Reason",
              "type": "rich_text",
              "rich_text": "={{ $json.ai_analysis.reasoning }}"
            },
            {
              "key": "Confidence Score",
              "type": "number",
              "number": "={{ $json.ai_analysis.confidence_score }}"
            },
            {
              "key": "Session",
              "type": "rich_text",
              "rich_text": "={{ $json.session_validation.current_kill_zone }}"
            },
            {
              "key": "Timestamp",
              "date": "={{ $json.timestamp }}",
              "type": "date"
            }
          ]
        }
      },
      "typeVersion": 2
    },
    {
      "id": "68fcbc92-0c1c-430e-a313-c6796567e460",
      "name": "Activador de Señal Telegram ICT",
      "type": "n8n-nodes-base.telegramTrigger",
      "position": [
        -240,
        240
      ],
      "webhookId": "ict-signals-webhook-2025",
      "parameters": {
        "updates": [
          "message"
        ],
        "additionalFields": {}
      },
      "typeVersion": 1.2
    },
    {
      "id": "9a011a37-59af-4609-b419-b3847ab865ba",
      "name": "Respuesta Webhook ICT",
      "type": "n8n-nodes-base.respondToWebhook",
      "position": [
        784,
        224
      ],
      "parameters": {
        "options": {},
        "respondWith": "json",
        "responseBody": "={{ { \"status\": \"success\", \"message\": \"ICT signal processed\", \"symbol\": $json.symbol, \"action\": $json.action, \"kill_zone\": $json.ai_analysis?.ict_analysis?.current_kill_zone, \"confidence\": $json.ai_analysis?.confidence_score, \"session_strength\": $json.ai_analysis?.ict_analysis?.session_strength, \"ict_factors\": { \"structure_break\": $json.ai_analysis?.ict_analysis?.structure_break, \"liquidity_grab\": $json.ai_analysis?.ict_analysis?.liquidity_grab, \"fair_value_gap\": $json.ai_analysis?.ict_analysis?.fair_value_gap, \"order_block\": $json.ai_analysis?.ict_analysis?.order_block_present } } }}"
      },
      "typeVersion": 1
    },
    {
      "id": "4324e565-28fa-44de-a513-f3ff833660ec",
      "name": "Solicitud HTTP",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        1008,
        224
      ],
      "parameters": {
        "url": "{{ $vars.WEBHOOK_URL || 'https://webhook.site/your-webhook-id' }}",
        "method": "POST",
        "options": {
          "timeout": 10000
        },
        "sendBody": true,
        "sendHeaders": true,
        "bodyParameters": {
          "parameters": [
            {
              "name": "signal_data",
              "value": "={{ JSON.stringify($json) }}"
            },
            {
              "name": "timestamp",
              "value": "={{ $now }}"
            },
            {
              "name": "workflow_id",
              "value": "ICT_Trading_Bot_2025"
            }
          ]
        },
        "headerParameters": {
          "parameters": [
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ]
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "fee94b74-4331-40be-b183-e44ac7496552",
      "name": "Obtener un chat",
      "type": "n8n-nodes-base.telegram",
      "position": [
        1200,
        224
      ],
      "webhookId": "a97609bb-db31-4a93-98e4-43b474126fa2",
      "parameters": {
        "chatId": "{{ $vars.TELEGRAM_CHAT_ID || '-1001234567890' }}",
        "resource": "chat",
        "additionalFields": {}
      },
      "typeVersion": 1.2
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "bb7e4921-396a-47db-97d2-53e23aa215b7",
  "connections": {
    "4324e565-28fa-44de-a513-f3ff833660ec": {
      "main": [
        [
          {
            "node": "fee94b74-4331-40be-b183-e44ac7496552",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "2fbf1cab-ef41-4e0f-b542-2da47fae8174": {
      "main": [
        [
          {
            "node": "11d8f1ff-efa1-423c-b070-036235f269c9",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "5e266bbc-1f9d-45b6-9dab-27c3b7102d51": {
      "main": [
        [
          {
            "node": "dd9eedee-05ed-4949-931f-c744ade93245",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "9a011a37-59af-4609-b419-b3847ab865ba": {
      "main": [
        [
          {
            "node": "4324e565-28fa-44de-a513-f3ff833660ec",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "737077e0-e256-45a2-a474-5de2c1b1ef3c": {
      "main": [
        [
          {
            "node": "4c0c50b2-8abc-4fb5-b5de-0eef53ee9ca8",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "11d8f1ff-efa1-423c-b070-036235f269c9": {
      "main": [
        [
          {
            "node": "afe2dec4-0b10-42ce-8ae8-898c3fbad56f",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "f6cfc332-9bba-40dc-9a51-d36028f825f6": {
      "main": [
        [
          {
            "node": "737077e0-e256-45a2-a474-5de2c1b1ef3c",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "763a0244-1745-45b9-81b0-9456ce29774b": {
      "main": [
        [
          {
            "node": "9a011a37-59af-4609-b419-b3847ab865ba",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "51f7928d-9f4c-4308-bbea-42e45e0b42da": {
      "main": [
        [
          {
            "node": "9a011a37-59af-4609-b419-b3847ab865ba",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "4c0c50b2-8abc-4fb5-b5de-0eef53ee9ca8": {
      "main": [
        [
          {
            "node": "2fbf1cab-ef41-4e0f-b542-2da47fae8174",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "dd9eedee-05ed-4949-931f-c744ade93245": {
      "main": [
        [
          {
            "node": "3fc15630-1c74-49aa-b899-85ed2bd44078",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "3fc15630-1c74-49aa-b899-85ed2bd44078": {
      "main": [
        [
          {
            "node": "51f7928d-9f4c-4308-bbea-42e45e0b42da",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "68fcbc92-0c1c-430e-a313-c6796567e460": {
      "main": [
        [
          {
            "node": "f6cfc332-9bba-40dc-9a51-d36028f825f6",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "afe2dec4-0b10-42ce-8ae8-898c3fbad56f": {
      "main": [
        [
          {
            "node": "5e266bbc-1f9d-45b6-9dab-27c3b7102d51",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "763a0244-1745-45b9-81b0-9456ce29774b",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
Preguntas frecuentes

¿Cómo usar este flujo de trabajo?

Copie el código de configuración JSON de arriba, cree un nuevo flujo de trabajo en su instancia de n8n y seleccione "Importar desde JSON", pegue la configuración y luego modifique la configuración de credenciales según sea necesario.

¿En qué escenarios es adecuado este flujo de trabajo?

Intermedio - Varios, Resumen de IA, IA Multimodal

¿Es de pago?

Este flujo de trabajo es completamente gratuito, puede importarlo y usarlo directamente. Sin embargo, tenga en cuenta que los servicios de terceros utilizados en el flujo de trabajo (como la API de OpenAI) pueden requerir un pago por su cuenta.

Información del flujo de trabajo
Nivel de dificultad
Intermedio
Número de nodos15
Categoría3
Tipos de nodos9
Descripción de la dificultad

Adecuado para usuarios con experiencia intermedia, flujos de trabajo de complejidad media con 6-15 nodos

Autor
Tegar karunia ilham

Tegar karunia ilham

@tegarkaruniailham

Helping business owners & marketers automate their processes with n8n. Specialist in custom workflows, API integrations, and template development. 📈 100+ successful automation projects 🔧 Premium n8n templates available 💡 Free consultation for custom automation Book a consultation for your business digital transformation!"

Enlaces externos
Ver en n8n.io

Compartir este flujo de trabajo

Categorías

Categorías: 34