Entwickler-Referenz
Brand Monitor API-Dokumentation
Brand Monitor API-Dokumentation: Kontinuierliche Markenüberwachung. Verfolgen Sie Typosquatting-Bedrohungen und Versuche der Markenimitation.
Brand Monitor
Kontinuierliche Markenüberwachung. Verfolgen Sie Typosquatting-Bedrohungen und Versuche der Markenimitation.
GET
/v1/brand-monitor
Rufen Sie alle überwachten Marken und ihren aktuellen Bedrohungsstatus ab.
Beispielantwort
{
"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"
}
Antwort-Felder
| Feld | Typ |
|---|---|
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
Erstellen Sie einen neuen Brand Monitor.
Request Body
{
"domain": "mycompany.com",
"alert_email": "security@example.com"
}
Antwort-Felder
| Feld | Typ |
|---|---|
id |
string |
brand |
string |
created_at |
string |
Beispielantwort
{
"id": "string",
"brand": "string",
"created_at": "2026-04-15T12:00:00Z"
}
GET
/v1/brand-monitor/scan?domain=mycompany.com
Starten Sie einen unmittelbaren Scan für einen Brand Monitor.
Antwort-Felder
| Feld | Typ |
|---|---|
id |
string |
brand |
string |
threats_found |
integer |
scan_duration_ms |
integer |
Beispielantwort
{
"id": "string",
"brand": "string",
"threats_found": 1,
"scan_duration_ms": 1
}