Our alerting solution is centered around two concepts: events and channels. The occurrence of an event can be configured to trigger an alert. A channel describes the delivery method for an alert. Every configured alert consists of an event type / channel pair. This level of granularity allows alerting to be configured to your exact preference.
- Get Monitored Domains
Get All Events
Get Lists Domain is Listed in
Get Events for Domain
Get Monitored Domains
Alerts (0.0.1)
Download OpenAPI description
Languages
Servers
US Mailgun
https://api.mailgun.net/
EU Mailgun
https://api.eu.mailgun.net/
- US Mailgun
https://api.mailgun.net/v1/monitoring/domains
- EU Mailgun
https://api.eu.mailgun.net/v1/monitoring/domains
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
https://api.mailgun.net/v1/monitoring/domainsResponse
application/json
{ "domains": [ { … }, { … } ] }
- US Mailgun
https://api.mailgun.net/v1/monitoring/domains/events
- EU Mailgun
https://api.eu.mailgun.net/v1/monitoring/domains/events
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
https://api.mailgun.net/v1/monitoring/domains/eventsResponse
application/json
{ "events": [ { … }, { … }, { … } ], "paging": {} }
- US Mailgun
https://api.mailgun.net/v1/monitoring/domains/{domain}/blocklists
- EU Mailgun
https://api.eu.mailgun.net/v1/monitoring/domains/{domain}/blocklists
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
'https://api.mailgun.net/v1/monitoring/domains/{domain}/blocklists'