跳转到主要内容
GET
/
team
/
threat-protection
获取团队的威胁防护策略
curl --request GET \
  --url https://api.firecrawl.dev/v2/team/threat-protection \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "allowRequestOverrides": true,
    "blacklist": [
      "*.risky.example"
    ],
    "blockedTlds": [
      "zip"
    ],
    "configured": true,
    "failurePolicy": "closed",
    "mode": "normal",
    "riskScoreThreshold": 75,
    "updatedAt": "2023-11-07T05:31:56Z",
    "whitelist": [
      "*.trusted.example"
    ]
  },
  "success": true
}
返回你的组织当前生效的 threat protection 策略。此功能仅适用于 Enterprise 版;需要先为你的团队启用该功能。

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

响应

团队所属组织当前生效的威胁防护策略。

data
object
success
boolean
示例:

true