fix(sources): replace clearbit_enrich and tines_breach with seon_email and flare_leaksdb

This commit is contained in:
nox-project
2026-04-13 13:24:27 +02:00
parent ee1c2257d4
commit a166ce411d
6 changed files with 102 additions and 81 deletions
+41
View File
@@ -0,0 +1,41 @@
{
"name": "seon_email",
"category": "enrichment",
"endpoint": "https://api.seon.io/SeonRestService/email-api/v3",
"method": "POST",
"requires_auth": true,
"selectors": {
"data": "$.data"
},
"rate_limit": 1.0,
"headers": {
"X-API-KEY": "{SEON_API_KEY}",
"Content-Type": "application/json"
},
"payload_template": {
"email": "{target}"
},
"api_key_slots": [
"{SEON_API_KEY}"
],
"input_type": "email",
"output_type": [
"email",
"domain",
"username"
],
"normalization_map": {
"email": "email_address",
"domain": "domain",
"full_name": "full_name",
"phone_number": "phone"
},
"tags": [
"passive"
],
"health_check_url": "https://api.seon.io",
"expected_status": 200,
"reliability_score": 4,
"backup_endpoints": [],
"confidence": 0.85
}