Webhook을 통해 콘텐츠 요약 생성기 (ApyHub)
중급
이것은Building Blocks분야의자동화 워크플로우로, 8개의 노드를 포함합니다.주로 Webhook, HttpRequest, RespondToWebhook 등의 노드를 사용하며. Webhook을 통해 내용 요약 생성기 (ApyHub)
사전 요구사항
- •HTTP Webhook 엔드포인트(n8n이 자동으로 생성)
- •대상 API의 인증 정보가 필요할 수 있음
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "OxmCguByCxCKPcQm",
"meta": {
"instanceId": "1777696fb9fddfee653e70940936c2b1e28ba1f1bde53b7182fbd6eb01988706"
},
"name": "Content Summarizer via Webhook (ApyHub)",
"tags": [],
"nodes": [
{
"id": "ee098e2b-3cfa-4c0c-9ad7-caf1fd4abe74",
"name": "Webhook 트리거 참고사항",
"type": "n8n-nodes-base.stickyNote",
"position": [
-100,
240
],
"parameters": {
"width": 280,
"height": 340,
"content": "This node listens for incoming POST requests. It expects a JSON body with a 'content' property (the text to summarize) and a 'summary_length' (optional, e.g., 'short', 'medium', 'long'). Your 'apy-token' must be provided in the request headers."
},
"typeVersion": 1
},
{
"id": "dca324db-c26d-400a-bab9-e3200f78407c",
"name": "요약 작업 시작 참고사항",
"type": "n8n-nodes-base.stickyNote",
"position": [
220,
240
],
"parameters": {
"color": 2,
"width": 260,
"height": 340,
"content": "This node sends a POST request to ApyHub's summarization API. It passes the 'content' from the webhook body and your 'apy-token' from the headers. It initiates the summarization job and returns a 'job_id'."
},
"typeVersion": 1
},
{
"id": "325504c9-8c6e-4b6a-9479-88bd85ca92a9",
"name": "요약 결과 조회 참고사항",
"type": "n8n-nodes-base.stickyNote",
"position": [
520,
240
],
"parameters": {
"color": 3,
"width": 260,
"height": 340,
"content": "This node polls ApyHub's API using the 'job_id' to check the status of the summarization. Once the status is 'finished', it retrieves the summarized content. This ensures you get the result only when processing is complete."
},
"typeVersion": 1
},
{
"id": "fd5bf412-b7b4-4b36-b1d4-71f2bc2012ce",
"name": "Webhook 응답 참고사항",
"type": "n8n-nodes-base.stickyNote",
"position": [
820,
240
],
"parameters": {
"color": 4,
"height": 340,
"content": "This node sends the final summarized text back to the original caller of the webhook. You can insert other nodes before this to store, share, or further process the summarized content."
},
"typeVersion": 1
},
{
"id": "cbf7a742-47c7-4a9e-8803-36a428097750",
"name": "요약 작업 시작",
"type": "n8n-nodes-base.httpRequest",
"position": [
300,
420
],
"parameters": {
"url": "=https://api.apyhub.com/sharpapi/api/v1/content/summarize",
"method": "POST",
"options": {},
"jsonBody": "={\n \"content\": \"{{ $json.body.content }}\",\n \"summary_length\": \"{{ $json.body.summary_length || 'medium' }}\"\n}",
"sendBody": true,
"jsonHeaders": "={\n \"Content-Type\": \"application/json\",\n \"apy-token\": \"{{ $json.headers['apy-token'] }}\"\n}",
"sendHeaders": true,
"specifyBody": "json",
"specifyHeaders": "json"
},
"typeVersion": 4.2
},
{
"id": "d1fb7874-f72c-4298-a95f-04ea3c75bcc2",
"name": "콘텐츠 Webhook 수신",
"type": "n8n-nodes-base.webhook",
"position": [
-20,
420
],
"webhookId": "6f7b6d29-ed7c-4251-9810-d127d5c36ad0-unique-id",
"parameters": {
"path": "summarize-content",
"options": {},
"httpMethod": "POST",
"responseMode": "responseNode"
},
"typeVersion": 2
},
{
"id": "5d70b7ab-ff27-4a21-a976-718466b5dd17",
"name": "요약된 콘텐츠로 응답",
"type": "n8n-nodes-base.respondToWebhook",
"position": [
900,
420
],
"parameters": {
"options": {},
"respondWith": "allIncomingItems"
},
"typeVersion": 1.2
},
{
"id": "2faf0d84-3195-479c-9843-fbdcedf3d419",
"name": "요약 결과 조회",
"type": "n8n-nodes-base.httpRequest",
"position": [
600,
420
],
"parameters": {
"url": "=https://api.apyhub.com/sharpapi/api/v1/content/summarize/job/status/{{ $json.job_id }}",
"options": {},
"jsonHeaders": "={\n \"Content-Type\": \"application/json\",\n \"apy-token\": \"{{ $('Receive Content Webhook').item.json.headers['apy-token'] }}\"\n}",
"sendHeaders": true,
"specifyHeaders": "json"
},
"typeVersion": 4.2
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "1fd30d32-1f0c-46fc-9af7-ace9d9190fb2",
"connections": {
"d1fb7874-f72c-4298-a95f-04ea3c75bcc2": {
"main": [
[
{
"node": "cbf7a742-47c7-4a9e-8803-36a428097750",
"type": "main",
"index": 0
}
]
]
},
"cbf7a742-47c7-4a9e-8803-36a428097750": {
"main": [
[
{
"node": "2faf0d84-3195-479c-9843-fbdcedf3d419",
"type": "main",
"index": 0
}
]
]
},
"2faf0d84-3195-479c-9843-fbdcedf3d419": {
"main": [
[
{
"node": "5d70b7ab-ff27-4a21-a976-718466b5dd17",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 빌딩 블록
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
TimeZoneDB API를 통한 시간대 변환 통합
TimeZoneDB API를 통합하여 시간대를 변환합니다.
Webhook
Http Request
Respond To Webhook
+
Webhook
Http Request
Respond To Webhook
6 노드ist00dent
빌딩 블록
ExchangeRate.host를 통해 Webhook를 사용하여 화폐 변환
ExchangeRate.host를 통해 Webhook를 사용하여 화폐 변환
Webhook
Http Request
Respond To Webhook
+
Webhook
Http Request
Respond To Webhook
6 노드ist00dent
빌딩 블록
웹훅을 통해 ScreenshotMachine API를 사용하여 필요에 따라 웹사이트 스크린샷 생성
웹훅을 통해 ScreenshotMachine API를 사용하여 필요에 따라 웹사이트 스크린샷 생성
If
Code
Webhook
+
If
Code
Webhook
12 노드ist00dent
빌딩 블록
Webhook을 통해 IP 지리적 위치 조사
IP-API.com을 통해 Webhook를 사용하여 IP 위치 정보 확인
Webhook
Http Request
Respond To Webhook
+
Webhook
Http Request
Respond To Webhook
6 노드ist00dent
빌딩 블록
Webhook를 통해 JSON 문자열 검증
Webhook을 통해 JSON 문자열��인
Code
Webhook
Respond To Webhook
+
Code
Webhook
Respond To Webhook
6 노드ist00dent
빌딩 블록
day9_암호화폐 업데이트 수신
CoinGecko를 사용한 암호화폐 시장 분석: 변동성 지표 및 투자 신호
If
Set
Switch
+
If
Set
Switch
26 노드ist00dent
금융
워크플로우 정보
난이도
중급
노드 수8
카테고리1
노드 유형4
저자
ist00dent
@ist00dentI’m a dedicated automation engineer passionate about no-code and low-code solutions. I design and implement robust n8n workflows—integrating APIs, databases, and messaging—to eliminate manual tasks and accelerate delivery. Leveraging Python and C#, I build scalable, adaptable automations that empower teams to focus on high-value work.
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유