개발자 참고자료
브랜드 모니터 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
}