You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add documentation for new email domain fields in minFraud Insights and
Factors: classification, risk, volume, and visit object with status,
last_visited_on, and has_redirect fields.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
A date string (e.g. 2019-01-01) to identify the date an email address domain was first seen by MaxMind. This is expressed using the ISO 8601 date format `YYYY-MM-DD`. The earliest date that may be returned is January 1, 2019.
895
914
896
915
[Learn how to use email first seen data for risk analysis on our Knowledge Base.](https://support.maxmind.com/knowledge-base/articles/minfraud-email-risk-data#first-seen)
An object containing information about an automated visit to the email domain. See the [Email > Domain > Visit](#email--domain--visit) section for details about this object.
This is `true` if the domain in the request has redirects (configured to automatically send visitors to another URL). Otherwise, the key is not included in the `/email/domain/visit` object.
973
+
974
+
If `true`, the `/email/domain/visit/status` field corresponds to the last domain visited after redirecting.
975
+
976
+
[Learn more about the email domain visit redirect flag on our Knowledge Base.](https://support.maxmind.com/knowledge-base/articles/minfraud-email-risk-data)
A classification of the status of the domain (or the last domain visited after following redirects, if these are present and can be followed) based on an automated visit at a previous point in time. This field may be initially unavailable for a newly sighted domain and populated at a future time after a visit is conducted. Pair with the `/email/domain/visit/last_visited_on` to determine the recency of the visit. One of the following values. Additional values may be added in the future.
987
+
988
+
*`live` - the domain is reachable and serving content normally
989
+
*`dns_error` - the domain is missing, expired, or DNS is misconfigured
990
+
*`network_error` - the domain is offline, blocked, or unreachable
991
+
*`http_error` - the domain is reachable but the web application had a problem or denied the request
992
+
*`parked` - the domain is reachable and is in a parked state
993
+
*`pre_development` - the domain is reachable and is in a pre-development state
994
+
995
+
[Learn more about the email domain visit status on our Knowledge Base.](https://support.maxmind.com/knowledge-base/articles/minfraud-email-risk-data)
996
+
{{</minfraud-schema-row>}}
997
+
899
998
{{</ schema-table >}}
900
999
901
1000
<!-- prettier-ignore-end -->
@@ -1533,7 +1632,15 @@ Factors services, and a full example of the JSON body document for an error.
1533
1632
},
1534
1633
"email": {
1535
1634
"domain": {
1536
-
"first_seen": "2015-01-20"
1635
+
"classification": "business",
1636
+
"first_seen": "2015-01-20",
1637
+
"risk": 1.23,
1638
+
"visit": {
1639
+
"has_redirect": true,
1640
+
"last_visited_on": "2025-11-15",
1641
+
"status": "live"
1642
+
},
1643
+
"volume": 6.5
1537
1644
},
1538
1645
"first_seen": "2016-02-03",
1539
1646
"is_disposable": false,
@@ -1758,7 +1865,15 @@ Factors services, and a full example of the JSON body document for an error.
0 commit comments