Torna ai modelli
MODELLO WORKFLOW
Crunchbase Funding Rounds | Operasyon için n8n Otomasyon İş Akışı Şablonu (HTTP, Google Sheets)
n8n için hazır otomasyon şablonu: Crunchbase Funding Rounds. 4 düğüm. Entegrasyonlar: HTTP, Google Sheets. JSON'u kopyalayıp n8n'e içe aktarın.
4 nodiCrunchbase_Funding_Rounds-workflow.json
{"id": "crunchbase-funding-tracker","name": "Crunchbase funding rounds","nodes": [{"id": "b2bee19f-4033-4473-a78c-3463b4b56e79","name": "Daily Check for New Funding Rounds","type": "n8n-nodes-base.scheduleTrigger","position": [-100,0],"parameters": {"rule": {"interval": [{"triggerAtHour": 8}]}},"typeVersion": 1.2},{"id": "bfeff292-40aa-4a3b-81bf-bd237463abe9","name": "Fetch Crunchbase Funding Rounds","type": "n8n-nodes-base.httpRequest","position": [120,0],"parameters": {"url": "https://api.crunchbase.com/api/v4/entities/funding_rounds","options": {},"sendQuery": true,"sendHeaders": true,"queryParameters": {"parameters": [{"name": "locations","value": "United States"},{"name": "industry","value": "Fintech,Healthtech"},{"name": "sort_order","value": "created_at DESC"},{"name": "page","value": "1"},{"name": "items_per_page","value": "25"}]},"headerParameters": {"parameters": [{"name": "X-cb-user-key","value": "YOUR_API_KEY"}]}},"typeVersion": 4.2},{"id": "aaf02cbe-e85d-4575-b570-2758289cbcb9","name": "Extract & Format Funding Data","type": "n8n-nodes-base.code","position": [440,0],"parameters": {"jsCode": "const baseUrl = \"https://www.crunchbase.com/funding-round/\";\n\nconst output = [];\n\nfor (const item of items[0].json.data.entities) {\n const props = item.properties;\n const id = item.identifier;\n\n const companyName = props.funded_organization_identifier?.value || \"N/A\";\n const industry = props.industry_group_identifiers?.map(ind => ind.value).join(\", \") || \"N/A\";\n const fundingType = props.funding_type || \"N/A\";\n const date = props.announced_on || \"N/A\";\n const amount = props.money_raised_usd || 0;\n const investors = props.investor_identifiers?.map(inv => inv.value).join(\", \") || \"N/A\";\n const url = baseUrl + id.permalink;\n\n output.push({\n json: {\n company_name: companyName,\n industry: industry,\n funding_round_type: fundingType,\n announced_date: date,\n money_raised_usd: amount,\n investors: investors,\n crunchbase_url: url\n }\n });\n}\n\nreturn output;\n"},"typeVersion": 2},{"id": "d8f7e9a0-1f2b-4b8d-8f5e-8e7f6d5c4b3a","name": "Save to Google Sheets","type": "n8n-nodes-base.googleSheets","position": [760,0],"parameters": {"columns": {"value": {"industry": "Industry","investors": "Investors","company_name": "Company Name","announced_date": "Announced Date","crunchbase_url": "Crunchbase URL","money_raised_usd": "Money Raised (USD)","funding_round_type": "Funding Round Type"},"mappingMode": "autoMapInputData"},"options": {},"operation": "append","sheetName": {"__rl": true,"mode": "list","value": "gid=0"},"documentId": {"__rl": true,"mode": "list","value": "YOUR_GOOGLE_SHEET_ID"}},"typeVersion": 3}],"active": false,"settings": {},"versionId": "1.0.0","connections": {"Extract & Format Funding Data": {"main": [[{"node": "Save to Google Sheets","type": "main","index": 0}]]},"Fetch Crunchbase Funding Rounds": {"main": [[{"node": "Extract & Format Funding Data","type": "main","index": 0}]]},"Daily Check for New Funding Rounds": {"main": [[{"node": "Fetch Crunchbase Funding Rounds","type": "main","index": 0}]]}}}
In n8n Editor: incolla con Ctrl+V→Il workflow verrà creato