Référence Développeur
Brand Monitor Documentation de l'API
Brand Monitor Documentation de l'API: Surveillance continue de la protection de la marque. Suivez les menaces de typosquattage et les tentatives d'usurpation d'identité de marque.
Brand Monitor
Surveillance continue de la protection de la marque. Suivez les menaces de typosquattage et les tentatives d'usurpation d'identité de marque.
GET
/v1/brand-monitor
Obtenez toutes les marques surveillées et leur statut de menace actuel.
Exemple de Réponse
{
"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"
}
Champs de Réponse
| Champ | Type |
|---|---|
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
Créez un nouveau moniteur de marque.
Corps de la requête
{
"domain": "mycompany.com",
"alert_email": "security@example.com"
}
Champs de Réponse
| Champ | Type |
|---|---|
id |
string |
brand |
string |
created_at |
string |
Exemple de Réponse
{
"id": "string",
"brand": "string",
"created_at": "2026-04-15T12:00:00Z"
}
GET
/v1/brand-monitor/scan?domain=mycompany.com
Déclenchez une analyse immédiate pour un moniteur de marque.
Champs de Réponse
| Champ | Type |
|---|---|
id |
string |
brand |
string |
threats_found |
integer |
scan_duration_ms |
integer |
Exemple de Réponse
{
"id": "string",
"brand": "string",
"threats_found": 1,
"scan_duration_ms": 1
}