开发者参考
品牌监控 API 文档
品牌监控 API 文档: Continuous brand 保护 monitoring. Track typosquatting threats 和 brand impersonation attempts.
品牌监控
Continuous brand 保护 monitoring. Track typosquatting threats 和 brand impersonation attempts.
GET
/v1/brand-monitor
Get 所有 monitored brands 和 their 当前 threat status.
响应示例
{
"brands": [
{
"domain": "mycompany.com",
"added_at": "2024-03-01T12:00:00Z",
"last_scan_at": "2024-03-14T08:30:00Z",
"scan_count": 6,
"registered_typos": 3,
"new_threats_since_baseline": 1,
"has_alerts": true
}
],
"total": 1,
"updated_at": "2024-03-14T08:30:00Z"
}
响应字段
| 字段 | 类型 |
|---|---|
monitors[] |
object[] |
monitors[] |
object |
monitors[].id |
string |
monitors[].brand |
string |
monitors[].created_at |
string |
monitors[].last_scan |
string |
monitors[].threat_count |
integer |
POST
/v1/brand-monitor
创建 a 新的 brand monitor.
请求体
{
"domain": "mycompany.com",
"alert_email": "security@example.com"
}
响应字段
| 字段 | 类型 |
|---|---|
id |
string |
brand |
string |
created_at |
string |
响应示例
{
"id": "string",
"brand": "string",
"created_at": "2026-04-15T12:00:00Z"
}
GET
/v1/brand-monitor/scan?domain=mycompany.com
Trigger an immediate scan 对于 a brand monitor.
响应字段
| 字段 | 类型 |
|---|---|
id |
string |
brand |
string |
threats_found |
integer |
scan_duration_ms |
integer |
响应示例
{
"id": "string",
"brand": "string",
"threats_found": 1,
"scan_duration_ms": 1
}