For Agents
Send transactional emails, validate addresses, detect bots, and manage sender domains and webhooks for the Omnivery email platform.
Get started with Omnivery Automations API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"send a transactional email through omnivery"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Omnivery Automations API API.
Send transactional email messages through configured Omnivery sending domains
Validate recipient email addresses before adding them to a send list
Suppress specific addresses to prevent future deliveries to known bouncers
Detect and score bot interactions against email links and pixels
GET STARTED
Use for: I want to send a transactional email through Omnivery, Validate this email address before I send to it, Suppress an email address that keeps bouncing, Set up a webhook for delivery and bounce events
Not supported: Does not handle SMS, push notifications, or marketing campaign design — use for transactional email send, validation, and bot detection only.
The Omnivery Automations API delivers transactional email, validates recipient addresses, detects bots interacting with messages, and manages sender domains. It exposes endpoints for sending messages, suppressing addresses, parsing email syntax, retrieving honeypot links, and subscribing to webhook events for delivery activity. Domain management endpoints let teams list configured sending domains and inspect their status, while bot detection scores interactions to filter automated traffic from engagement metrics.
Subscribe webhooks to delivery, open, click, and bounce event types
Inspect honeypot link interactions to flag suspicious recipient behaviour
Manage sending domains and inspect their configuration status
Patterns agents use Omnivery Automations API API for, with concrete tasks.
★ Transactional Email Delivery
Deliver password resets, receipts, and account notifications through Omnivery's sending infrastructure. The POST /{domain}/messages endpoint accepts the recipient, subject, and body and queues the message against a verified sending domain. Suppression and validation endpoints help keep the sender reputation clean before each send.
Send a transactional email from no-reply@example.com to a verified recipient with subject 'Password reset' and a one-time link in the body.
Bot Filtering on Engagement Metrics
Distinguish real recipients from automated scanners by submitting interaction events to the bot detection endpoint and reading back a request-level verdict. The POST /{domain}/bot endpoint validates an interaction, and GET /{domain}/bot/{request_id} retrieves the stored result for downstream analytics or filtering.
Submit a click event to /{domain}/bot for request_id abc123 and retrieve the bot verdict before counting the click in engagement reports.
Address Validation and Suppression Hygiene
Keep mailing lists clean by validating each address before adding it and suppressing addresses that have hard-bounced. GET /{domain}/validate scores an address for deliverability, and POST /{domain}/suppress adds an address to the per-domain suppression list so future sends skip it automatically.
Validate user@example.com via GET /{domain}/validate; if the response marks it undeliverable, post it to /{domain}/suppress.
Agent-Driven Email Workflows via Jentic
AI agents trigger Omnivery email sends, validate addresses, and react to webhook events through Jentic's intent search without storing the API key in the agent context. The agent searches for the send operation, loads its schema, and executes it with parameters supplied by upstream tools.
Use Jentic search 'send transactional email omnivery' to locate POST /{domain}/messages, load the schema, and execute the send.
13 endpoints — the omnivery automations api delivers transactional email, validates recipient addresses, detects bots interacting with messages, and manages sender domains.
METHOD
PATH
DESCRIPTION
/{domain}/messages
Send an email message
/{domain}/validate
Validate a recipient address
/{domain}/suppress
Suppress an address from future sends
/{domain}/bot
Submit an interaction for bot detection
/{domain}/bot/{request_id}
Retrieve a stored bot detection result
/domains/{domain}/webhooks
Subscribe a webhook to delivery events
/domains
List configured sending domains
/{domain}/messages
Send an email message
/{domain}/validate
Validate a recipient address
/{domain}/suppress
Suppress an address from future sends
/{domain}/bot
Submit an interaction for bot detection
/{domain}/bot/{request_id}
Retrieve a stored bot detection result
Three things that make agents converge on Jentic-routed access.
Credential isolation
Omnivery API keys are stored encrypted in the Jentic vault (MAXsystem). Agents receive a scoped reference and never see the raw key in their context.
Intent-based discovery
Agents search by intent (e.g. 'send transactional email omnivery') and Jentic returns the matching operation with its input schema, so the agent can call the right endpoint without scanning docs.
Time to first call
Direct integration: 1-2 days for auth, retries, and webhook plumbing. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Mailgun API
Mailgun is a larger transactional email platform with similar send, validate, and webhook primitives.
Choose Mailgun when an account already exists there or when broader regional sending infrastructure is required.
SendGrid Email Activity
SendGrid offers comparable transactional email delivery with extensive activity and analytics endpoints.
Pick SendGrid when an agent needs deeper activity history and event analytics beyond Omnivery's webhook stream.
Postmark Server API
Postmark focuses on fast transactional delivery and can be used alongside Omnivery for failover.
Use Postmark in parallel for redundancy on critical password-reset or receipt traffic.
Specific to using Omnivery Automations API API through Jentic.
What authentication does the Omnivery Automations API use?
The API uses an API key passed as a request header. Through Jentic the key is held in the encrypted vault (MAXsystem) and never enters the agent context — agents receive a scoped reference only.
Can I send transactional email with the Omnivery Automations API?
Yes. POST /{domain}/messages queues a message against a verified sending domain. Combine with GET /{domain}/validate before adding new recipients to keep bounce rates low.
How does bot detection work in the Omnivery API?
Submit an interaction to POST /{domain}/bot to receive a request id, then call GET /{domain}/bot/{request_id} to read back the verdict. Honeypot link clicks can also be inspected via GET /{domain}/{message_id}/hclick.
What are the rate limits for the Omnivery Automations API?
Rate limits are not declared in the OpenAPI spec; consult docs.omnivery.com for current account-tier limits and burst allowances.
How do I subscribe to delivery webhooks through Jentic?
Search Jentic for 'subscribe omnivery webhook', load the POST /domains/{domain}/webhooks schema, then execute with the target URL and webhook type. Sample payloads are available via GET /domains/{domain}/webhooks/{webhooktype}/sample.
Is the Omnivery API free?
Omnivery offers paid sending tiers; pricing depends on volume and feature mix. Check docs.omnivery.com for current plans before committing production traffic.
/domains/{domain}/webhooks
Subscribe a webhook to delivery events
/domains
List configured sending domains