CLI Reference
enrich
Email enrichment and validation
hermes enrich
Manage email credentials and validate email addresses.
List Credentials
hermes enrich credentialsReturns all stored email credentials (IMAP/SMTP configurations).
Output
{
"count": 56,
"data": [
{
"id": "5dfd1a18-...",
"email": "evie.stewart@camie.run",
"senderName": "Evie Stewart",
"domain": "camie.run",
"imapHost": "213.199.62.167",
"imapPort": 993,
"smtpHost": "213.199.62.167",
"smtpPort": 587
}
]
}Validate Email
hermes enrich validate --email john@company.comOutput
{
"email": "john@company.com",
"score": 85,
"isv_format": true,
"isv_domain": true,
"isv_mx": true,
"isv_noblock": true,
"result": "deliverable",
"reason": "accepted_email"
}Validation Fields
| Field | Description |
|---|---|
isv_format | Valid email format |
isv_domain | Domain exists |
isv_mx | MX records found |
isv_noblock | Not on blocklist |
isv_nocatchall | Not a catch-all address |
isv_nogeneric | Not a generic address (info@, admin@) |
result | deliverable, risky, undeliverable, unknown |