API Integration for Real-Time Protection
DNSTwister also provides an API endpoint for advanced users who want to automate their responses to suspicious
domains. From within your control panel, you'll find a unique JSON endpoint (e.g., resolved.json
)
that lists current resolved permutations, their IP addresses, and whether MX records exist.
By integrating this data into your downstream services—such as SIEM tools or custom mail flow filters—you can
immediately quarantine or block inbound emails from newly discovered look-alike domains.
Example JSON Output
{
"resolved": [
{
"domain_ascii": "geographicalmedia.net",
"domain_unicode": "geographicalmedia.net",
"ip": "3.33.130.190",
"mx_record_exists": true,
"newly_monitored": false
},
{
"domain_ascii": "geographic.almedia.com",
"domain_unicode": "geographic.almedia.com",
"ip": "64.190.63.222",
"mx_record_exists": true,
"newly_monitored": false
},
{
"domain_ascii": "geographicalmed.ia.com",
"domain_unicode": "geographicalmed.ia.com",
"ip": "13.248.169.48",
"mx_record_exists": false,
"newly_monitored": false
}
],
"subscribed_domain_ascii": "geographicalmedia.com",
"subscribed_domain_unicode": "geographicalmedia.com",
"updated_utc": "2025-01-13T08:08:58Z"
}
As new permutations or DNS changes are detected, this data refreshes automatically, providing a
real-time feed of potential threats so you can initiate quarantine or blocking actions without
manual intervention.