8
n8n 한국어amn8n.com

28 - 자금 조달 인사이트 파이프라인

중급

이것은Market Research분야의자동화 워크플로우로, 9개의 노드를 포함합니다.주로 Code, Filter, Airtable, HttpRequest, GoogleSheets 등의 노드를 사용하며. Crunchbase, Google Sheets, Airtable을 사용한 자금 조달 인사이트 자동화

사전 요구사항
  • Airtable API Key
  • 대상 API의 인증 정보가 필요할 수 있음
  • Google Sheets API 인증 정보

카테고리

워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "name": "28 - Funding Insights Pipeline",
  "nodes": [
    {
      "id": "4e26cbbf-8379-4aae-811a-853970151119",
      "name": "🕐 일일 확인",
      "type": "n8n-nodes-base.scheduleTrigger",
      "position": [
        -60,
        200
      ],
      "parameters": {
        "rule": {
          "interval": [
            {}
          ]
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "6ddcfc63-0cee-4e3f-9288-6b5f463f7bdb",
      "name": "📄 펀딩 데이터 파싱",
      "type": "n8n-nodes-base.code",
      "position": [
        380,
        200
      ],
      "parameters": {
        "jsCode": "// Parse and structure the funding data\nconst items = [];\n\nif ($input.first().json.entities) {\n  for (const entity of $input.first().json.entities) {\n    const properties = entity.properties;\n    const fundedOrg = properties.funded_organization_identifier;\n    \n    // Extract investor names\n    let investors = '';\n    if (properties.investor_identifiers && properties.investor_identifiers.length > 0) {\n      investors = properties.investor_identifiers.map(inv => inv.value).join(', ');\n    }\n    \n    // Extract categories\n    let categories = '';\n    if (fundedOrg && fundedOrg.categories && fundedOrg.categories.length > 0) {\n      categories = fundedOrg.categories.map(cat => cat.value).join(', ');\n    }\n    \n    // Format funding amount\n    let fundingAmount = 'N/A';\n    if (properties.funding_round_money_raised && properties.funding_round_money_raised.value_usd) {\n      fundingAmount = `$${(properties.funding_round_money_raised.value_usd / 1000000).toFixed(2)}M`;\n    }\n    \n    items.push({\n      json: {\n        company_name: fundedOrg ? fundedOrg.value : 'N/A',\n        funding_amount: fundingAmount,\n        funding_type: properties.investment_type ? properties.investment_type.value : 'N/A',\n        announced_date: properties.announced_on ? properties.announced_on.value : 'N/A',\n        description: fundedOrg && fundedOrg.short_description ? fundedOrg.short_description : 'N/A',\n        website: fundedOrg && fundedOrg.website ? fundedOrg.website.value : 'N/A',\n        industry: categories || 'N/A',\n        investors: investors || 'N/A',\n        crunchbase_url: fundedOrg ? `https://www.crunchbase.com/organization/${fundedOrg.permalink}` : 'N/A',\n        scraped_at: new Date().toISOString().split('T')[0]\n      }\n    });\n  }\n}\n\nreturn items;"
      },
      "typeVersion": 2
    },
    {
      "id": "de6857e8-7ec0-4433-b36e-50df001acbbb",
      "name": "📊 Google Sheets에 저장",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        820,
        100
      ],
      "parameters": {
        "columns": {
          "values": {
            "Website": "={{$json.website}}",
            "Industry": "={{$json.industry}}",
            "Investors": "={{$json.investors}}",
            "Scraped At": "={{$json.scraped_at}}",
            "Description": "={{$json.description}}",
            "Company Name": "={{$json.company_name}}",
            "Funding Type": "={{$json.funding_type}}",
            "Crunchbase URL": "={{$json.crunchbase_url}}",
            "Date Announced": "={{$json.announced_date}}",
            "Funding Amount": "={{$json.funding_amount}}"
          },
          "mappingMode": "defineBelow"
        },
        "options": {
          "cellFormat": "USER_ENTERED"
        },
        "operation": "appendOrUpdate",
        "sheetName": "Funding Tracker",
        "documentId": {
          "__rl": true,
          "mode": "id",
          "value": "YOUR_GOOGLE_SHEET_ID"
        }
      },
      "typeVersion": 4.4
    },
    {
      "id": "05653b74-d30c-4af6-8b17-f4f9fba3cf38",
      "name": "🗂️ Airtable에 저장",
      "type": "n8n-nodes-base.airtable",
      "position": [
        820,
        300
      ],
      "parameters": {
        "table": {
          "__rl": true,
          "mode": "id",
          "value": "YOUR_AIRTABLE_TABLE_ID"
        },
        "options": {},
        "operation": "append",
        "application": {
          "__rl": true,
          "mode": "id",
          "value": "YOUR_AIRTABLE_APP_ID"
        },
        "authentication": "airtableOAuth2Api"
      },
      "typeVersion": 1
    },
    {
      "id": "0fcd4232-c492-4597-8751-874098f23427",
      "name": "워크플로우 정보",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -120,
        -140
      ],
      "parameters": {
        "color": 4,
        "width": 420,
        "height": 620,
        "content": "## 1. Workflow Trigger & Data Fetching (🕐 Daily Check + 📊 Fetch Recent Funding)\n\n*The workflow is scheduled to run daily.\n\nIt calls the Crunchbase API (funding_rounds endpoint) to fetch the latest 100 funding rounds, including company details, investors, categories, and funding amounts.\n\nAPI key must be filled in the request URL (user_key={{YOUR_CRUNCHBASE_API_KEY}}).*"
      },
      "typeVersion": 1
    },
    {
      "id": "31bcef8a-6b0b-40e6-acb8-a3ce53012dea",
      "name": "📅 최근 (30일) 필터링",
      "type": "n8n-nodes-base.filter",
      "position": [
        600,
        200
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "strict"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "condition-filter",
              "operator": {
                "type": "dateTime",
                "operation": "after",
                "rightType": "expression"
              },
              "leftValue": "={{$json.announced_date}}",
              "rightValue": "={{DateTime.now().minus({days: 30}).toFormat('yyyy-MM-dd')}}"
            }
          ]
        }
      },
      "typeVersion": 2
    },
    {
      "id": "8f996c64-c96b-4e20-bb13-469a8e7e69cd",
      "name": "📊 최근 펀딩 정보 가져오기",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        160,
        200
      ],
      "parameters": {
        "url": "https://api.crunchbase.com/api/v4/searches/funding_rounds?user_key={{YOUR_CRUNCHBASE_API_KEY}}",
        "method": "POST",
        "options": {
          "response": {
            "response": {
              "responseFormat": "json"
            }
          }
        },
        "sendBody": true,
        "bodyParameters": {
          "parameters": [
            {
              "name": "field_ids",
              "value": "[\"identifier\",\"funding_round_money_raised\",\"announced_on\",\"funded_organization_identifier\",\"funded_organization_description\",\"funded_organization_website\",\"funded_organization_categories\",\"investor_identifiers\",\"investment_type\"]"
            },
            {
              "name": "order",
              "value": "[{\"field_id\":\"announced_on\",\"sort_order\":\"desc\"}]"
            },
            {
              "name": "limit",
              "value": "100"
            }
          ]
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "dcdb1747-d79a-4845-bd63-198580af7ec6",
      "name": "워크플로우 정보1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        320,
        -140
      ],
      "parameters": {
        "width": 420,
        "height": 620,
        "content": "## 2. Data Processing (📄 Parse Funding Data + 📅 Filter Recent 30 days)\n\n*The raw Crunchbase response is parsed into a clean, structured format with readable fields. Only funding rounds announced in the last 30 days are kept, ensuring the dataset stays fresh and relevant.*"
      },
      "typeVersion": 1
    },
    {
      "id": "b9049419-7c57-4da7-9d72-0f4b037dc937",
      "name": "워크플로우 정보2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        760,
        -140
      ],
      "parameters": {
        "color": 3,
        "width": 340,
        "height": 620,
        "content": "## 3. Storage Outputs (📊 Save to Google Sheets + 🗂️ Save to Airtable)\n\n*Filtered funding records are saved into both Google Sheets (for easy sharing and reporting) and Airtable (for database-style management). Both outputs store the same standardized fields, ensuring consistency across tools.*"
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "connections": {
    "4e26cbbf-8379-4aae-811a-853970151119": {
      "main": [
        [
          {
            "node": "8f996c64-c96b-4e20-bb13-469a8e7e69cd",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "6ddcfc63-0cee-4e3f-9288-6b5f463f7bdb": {
      "main": [
        [
          {
            "node": "31bcef8a-6b0b-40e6-acb8-a3ce53012dea",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "05653b74-d30c-4af6-8b17-f4f9fba3cf38": {
      "main": [
        []
      ]
    },
    "8f996c64-c96b-4e20-bb13-469a8e7e69cd": {
      "main": [
        [
          {
            "node": "6ddcfc63-0cee-4e3f-9288-6b5f463f7bdb",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "de6857e8-7ec0-4433-b36e-50df001acbbb": {
      "main": [
        []
      ]
    },
    "31bcef8a-6b0b-40e6-acb8-a3ce53012dea": {
      "main": [
        [
          {
            "node": "de6857e8-7ec0-4433-b36e-50df001acbbb",
            "type": "main",
            "index": 0
          },
          {
            "node": "05653b74-d30c-4af6-8b17-f4f9fba3cf38",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

이 워크플로우를 어떻게 사용하나요?

위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.

이 워크플로우는 어떤 시나리오에 적합한가요?

중급 - 시장 조사

유료인가요?

이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
중급
노드 수9
카테고리1
노드 유형7
난이도 설명

일정 경험을 가진 사용자를 위한 6-15개 노드의 중간 복잡도 워크플로우

저자
Avkash Kakdiya

Avkash Kakdiya

@itechnotion

🚀 Founder of iTechNotion — we build custom AI-powered automation workflows for startups, agencies, and founders. 💡 Specializing in agentic AI systems, content automation, sales funnels, and digital workers. 🔧 14+ years in tech | Building scalable no-code/low-code solutions using n8n, OpenAI, and other API-first tools. 📬 Let’s automate what slows you down.

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34