# 监控检查完成 (/zh/api-reference/endpoint/webhook-monitor-check-completed)

<!-- agent-signals: reading_time_min: 1 · est_tokens: 1147 · updated: 2026-07-30 -->
Related: [Search（搜索）](/zh/api-reference/endpoint/search.md), [搜索反馈](/zh/api-reference/endpoint/search-feedback.md), [Scrape](/zh/api-reference/endpoint/scrape.md), [批量抓取](/zh/api-reference/endpoint/batch-scrape.md), [获取批量抓取状态](/zh/api-reference/endpoint/batch-scrape-get.md), [取消批量抓取](/zh/api-reference/endpoint/batch-scrape-delete.md)



`POST` webhook `monitorCheckCompleted`

监控检查已完成

## OpenAPI

```json
{
  "parameters": [
    {
      "description": "原始请求体的 HMAC-SHA256 签名，格式为 `sha256=<hex>`。当你在[账户设置](https://www.firecrawl.dev/app/settings?tab=advanced)中配置了 HMAC 密钥时，该字段会出现。有关验证详情，请参阅 [Webhook 安全](/webhooks/security)。",
      "in": "header",
      "name": "X-Firecrawl-Signature",
      "required": false,
      "schema": {
        "example": "sha256=abc123def456789...",
        "type": "string"
      }
    }
  ],
  "requestBody": {
    "content": {
      "application/json": {
        "example": {
          "data": [
            {
              "checkId": "019df960-5f2a-75fb-a98b-bd2d32ca67d4",
              "monitorId": "019df960-06e7-7383-9d89-82c0113dc31a",
              "status": "completed",
              "summary": {
                "changed": 1,
                "error": 0,
                "new": 0,
                "removed": 0,
                "same": 1,
                "totalPages": 2
              }
            }
          ],
          "id": "019df960-5f2a-75fb-a98b-bd2d32ca67d4",
          "metadata": {},
          "success": true,
          "type": "monitor.check.completed",
          "webhookId": "f1e2d3c4-0001-0000-0000-000000000000"
        },
        "schema": {
          "properties": {
            "data": {
              "items": {
                "properties": {
                  "checkId": {
                    "description": "监控检查 ID。",
                    "format": "uuid",
                    "type": "string"
                  },
                  "monitorId": {
                    "description": "监控 ID。",
                    "format": "uuid",
                    "type": "string"
                  },
                  "status": {
                    "description": "监控检查的最终状态。",
                    "enum": [
                      "completed",
                      "partial",
                      "failed",
                      "skipped_overlap"
                    ],
                    "type": "string"
                  },
                  "summary": {
                    "properties": {
                      "changed": {
                        "type": "integer"
                      },
                      "error": {
                        "type": "integer"
                      },
                      "new": {
                        "type": "integer"
                      },
                      "removed": {
                        "type": "integer"
                      },
                      "same": {
                        "type": "integer"
                      },
                      "totalPages": {
                        "type": "integer"
                      }
                    },
                    "required": [
                      "totalPages",
                      "same",
                      "changed",
                      "new",
                      "removed",
                      "error"
                    ],
                    "type": "object"
                  }
                },
                "required": [
                  "monitorId",
                  "checkId",
                  "status",
                  "summary"
                ],
                "type": "object"
              },
              "type": "array"
            },
            "error": {
              "description": "检查失败时的错误消息。",
              "type": "string"
            },
            "id": {
              "description": "监控检查 ID。",
              "format": "uuid",
              "type": "string"
            },
            "metadata": {
              "additionalProperties": {
                "type": "string"
              },
              "description": "你在 webhook 配置中提供的自定义元数据对象。每次投递时都会原样返回。",
              "type": "object"
            },
            "success": {
              "description": "当检查完成且页面无错误时为 `true`，否则为 `false`。",
              "type": "boolean"
            },
            "type": {
              "const": "monitor.check.completed",
              "description": "事件类型。",
              "type": "string"
            },
            "webhookId": {
              "description": "此次 webhook 投递的唯一标识符。",
              "format": "uuid",
              "type": "string"
            }
          },
          "required": [
            "success",
            "type",
            "id",
            "webhookId",
            "data"
          ],
          "type": "object"
        }
      }
    },
    "required": true
  },
  "responses": {
    "200": {
      "description": "返回任意 `2xx` 状态码以确认已接收。"
    }
  }
}
```
