開発者向けリファレンス
ブランド監視 APIドキュメント
ブランド監視 APIドキュメント: 継続的なブランド保護監視。タイポスクワッティングの脅威とブランド偽装の試みを追跡します。
ブランド監視
継続的なブランド保護監視。タイポスクワッティングの脅威とブランド偽装の試みを追跡します。
GET
/v1/brand-monitor
監視されているすべてのブランドと現在の脅威ステータスを取得します。
レスポンス例
{
"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
新しいブランドモニターを作成します。
リクエストボディ
{
"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
ブランドモニターの直ちょなスキャンをトリガーします。
レスポンスフィールド
| フィールド | タイプ |
|---|---|
id |
string |
brand |
string |
threats_found |
integer |
scan_duration_ms |
integer |
レスポンス例
{
"id": "string",
"brand": "string",
"threats_found": 1,
"scan_duration_ms": 1
}