获取监控检查
curl --request GET \
--url https://api.firecrawl.dev/v2/monitor/{monitorId}/checks/{checkId} \
--header 'Authorization: Bearer <token>'{
"data": {
"actualCredits": 123,
"billingStatus": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"error": "<string>",
"estimatedCredits": 123,
"finishedAt": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"monitorId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"notificationStatus": {},
"reservedCredits": 123,
"scheduledFor": "2023-11-07T05:31:56Z",
"startedAt": "2023-11-07T05:31:56Z",
"summary": {
"changed": 123,
"error": 123,
"new": 123,
"removed": 123,
"same": 123,
"totalPages": 123
},
"targetResults": "<array>",
"updatedAt": "2023-11-07T05:31:56Z",
"next": "<string>",
"pages": [
{
"createdAt": "2023-11-07T05:31:56Z",
"currentScrapeId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"diff": {
"json": {},
"text": "<string>"
},
"error": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"judgment": {
"meaningful": true,
"meaningfulChanges": [
{
"after": "<string>",
"before": "<string>",
"reason": "<string>"
}
],
"reason": "<string>"
},
"metadata": {},
"previousScrapeId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"snapshot": {
"json": {}
},
"statusCode": 123,
"targetId": "<string>",
"url": "<string>"
}
]
},
"next": "<string>",
"success": true
}监控端点
获取监控检查详情
GET
/
monitor
/
{monitorId}
/
checks
/
{checkId}
获取监控检查
curl --request GET \
--url https://api.firecrawl.dev/v2/monitor/{monitorId}/checks/{checkId} \
--header 'Authorization: Bearer <token>'{
"data": {
"actualCredits": 123,
"billingStatus": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"error": "<string>",
"estimatedCredits": 123,
"finishedAt": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"monitorId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"notificationStatus": {},
"reservedCredits": 123,
"scheduledFor": "2023-11-07T05:31:56Z",
"startedAt": "2023-11-07T05:31:56Z",
"summary": {
"changed": 123,
"error": 123,
"new": 123,
"removed": 123,
"same": 123,
"totalPages": 123
},
"targetResults": "<array>",
"updatedAt": "2023-11-07T05:31:56Z",
"next": "<string>",
"pages": [
{
"createdAt": "2023-11-07T05:31:56Z",
"currentScrapeId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"diff": {
"json": {},
"text": "<string>"
},
"error": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"judgment": {
"meaningful": true,
"meaningfulChanges": [
{
"after": "<string>",
"before": "<string>",
"reason": "<string>"
}
],
"reason": "<string>"
},
"metadata": {},
"previousScrapeId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"snapshot": {
"json": {}
},
"statusCode": 123,
"targetId": "<string>",
"url": "<string>"
}
]
},
"next": "<string>",
"success": true
}授权
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
查询参数
必填范围:
1 <= x <= 100要跳过的页面结果数。请使用上一响应中的 next URL 进行分页。
必填范围:
x >= 0可用选项:
same, new, changed, removed, error ⌘I

