8
n8n 中文网amn8n.com

通过 Webhook 查询公共假日

中级

这是一个Building Blocks领域的自动化工作流,包含 6 个节点。主要使用 Webhook, HttpRequest, RespondToWebhook 等节点。 通过 Webhook 使用 Nager.Date API 查询公共假日

前置要求
  • HTTP Webhook 端点(n8n 会自动生成)
  • 可能需要目标 API 的认证凭证
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "id": "NG5qfRoVru1JkrkG",
  "meta": {
    "instanceId": "1777696fb9fddfee653e70940936c2b1e28ba1f1bde53b7182fbd6eb01988706"
  },
  "name": "通过 Webhook 查询公共假日",
  "tags": [],
  "nodes": [
    {
      "id": "8164668d-0ba2-451b-a2dc-d2ffdc54d9a0",
      "name": "Webhook 触发器说明",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -160,
        320
      ],
      "parameters": {
        "width": 300,
        "height": 320,
        "content": "此节点监听传入的 POST 请求。它期望包含 'year'(例如 2025)和 'countryCode'(例如 US、PH、DE)属性的 JSON 正文来获取公共假日。在此处查找国家代码:https://www.nager.at/Country"
      },
      "typeVersion": 1
    },
    {
      "id": "49af286c-d797-4798-a167-10d8c1593160",
      "name": "假日 API 调用说明",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        200,
        320
      ],
      "parameters": {
        "color": 2,
        "width": 300,
        "height": 320,
        "content": "此节点向 Nager.Date API 发出 HTTP GET 请求,以检索指定年份和国家的公共假日列表。API 返回每个假日的日期、名称和类型等详细信息。"
      },
      "typeVersion": 1
    },
    {
      "id": "d39a877b-0fdb-4079-9577-7bdc343e96f0",
      "name": "Webhook 响应说明",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        560,
        300
      ],
      "parameters": {
        "color": 3,
        "width": 300,
        "height": 340,
        "content": "此节点将从 Nager.Date 收到的公共假日列表发送回 webhook 的原始调用者。您可以在此节点之前插入其他节点来筛选、格式化、存储或进一步处理假日数据。"
      },
      "typeVersion": 1
    },
    {
      "id": "a2091cce-1e80-4e43-948b-386a9bc0bc6e",
      "name": "获取公共假日",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        280,
        480
      ],
      "parameters": {
        "url": "=https://date.nager.at/api/v3/PublicHolidays/{{ $json.body.year }}/{{ $json.body.countryCode }}",
        "method": "=GET",
        "options": {}
      },
      "typeVersion": 4.2
    },
    {
      "id": "1fb1c6ca-aa64-424c-90a2-7e814050d0e2",
      "name": "接收假日请求 Webhook",
      "type": "n8n-nodes-base.webhook",
      "position": [
        -80,
        480
      ],
      "webhookId": "6134a4e8-7e4f-4cbb-a24f-5c10e85361d6-unique-id",
      "parameters": {
        "path": "public-holidays",
        "options": {},
        "httpMethod": "POST",
        "responseMode": "responseNode"
      },
      "typeVersion": 2
    },
    {
      "id": "d0e71d3b-ba62-4dde-a36d-7ba48c0313ae",
      "name": "响应假日数据",
      "type": "n8n-nodes-base.respondToWebhook",
      "position": [
        660,
        480
      ],
      "parameters": {
        "options": {},
        "respondWith": "allIncomingItems"
      },
      "typeVersion": 1.2
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "5f014ff9-1281-464b-9e4f-0897c0b81883",
  "connections": {
    "Get Public Holidays": {
      "main": [
        [
          {
            "node": "Respond with Holiday Data",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Receive Holiday Request Webhook": {
      "main": [
        [
          {
            "node": "Get Public Holidays",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
常见问题

如何使用这个工作流?

复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。

这个工作流适合什么场景?

中级 - 构建模块

需要付费吗?

本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。

工作流信息
难度等级
中级
节点数量6
分类1
节点类型4
难度说明

适合有一定经验的用户,包含 6-15 个节点的中等复杂度工作流

作者
ist00dent

ist00dent

@ist00dent

I’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 查看

分享此工作流