Returns detailed information about a specific domain.
The :id parameter can be either the numeric ID or the slug of the domain.
Response includes: - parked_domain (boolean): Indicates if the domain is parked (true) or live (false). Parked domains have limited message volume. - tags (array): Array of tag objects associated with the domain, each containing id, name, and color.
| Code | Description |
|---|---|
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Not Found |
| 500 | Server crashed for some reason |
{
"id": 16,
"user_id": 1,
"address": "abc.com",
"slug": "abc-com",
"rua_report": true,
"ruf_report": true,
"mta_sts_report": true,
"dmarc_status": "dmarc_active",
"mta_sts_status": "mta_sts_active",
"parked_domain": false,
"hosted_dmarc": true,
"hosted_mta_sts": true,
"created_at": "2020-04-21T23:33:47.526Z",
"updated_at": "2026-04-06T16:00:24.086Z",
"tags": [
{
"id": 1,
"name": "Production",
"color": "#3B82F6"
},
{
"id": 2,
"name": "Client-A",
"color": "#10B981"
}
],
"dmarc_record": "v=DMARC1; p=quarantine; sp=reject; pct=100; rua=mailto:rua@dmarcinput.com; ruf=mailto:ruf@dmarcinput.com; adkim=r; aspf=r; fo=0; rf=afrf; ri=86400",
"dmarc_record_errors": null,
"dmarc_record_parsed": {
"policy": "quarantine",
"subdomain_policy": "reject",
"pct": "100",
"rua": "mailto:rua@dmarcinput.com",
"ruf": "mailto:ruf@dmarcinput.com",
"adkim": "r",
"aspf": "r",
"fo": "0",
"rf": "afrf",
"ri": "86400",
"np": null,
"psd": null,
"t": null,
"updated_at": "2026-05-20T10:14:22.000Z"
},
"spf_record": "v=spf1 include:_spf.google.com include:mailgun.org ~all",
"spf_tree": {
"directive": "v=spf1",
"includes": [
{ "host": "_spf.google.com", "directive": "include:_spf.google.com" },
{ "host": "mailgun.org", "directive": "include:mailgun.org" }
],
"qualifier": "~all"
},
"spf_dns_queries": 6,
"hosted_services": {
"dmarc": {
"enabled": true,
"cname_status": "found",
"cname_record": {
"host": "_dmarc.abc.com",
"value": "abc-com._d.dmarcinput.com",
"type": "CNAME"
}
},
"mta_sts": {
"enabled": true,
"policy_cname": {
"status": "found",
"host": "mta-sts.abc.com",
"value": "abc-com.mta-sts.dmarcinput.com",
"type": "CNAME"
},
"record_cname": {
"status": "found",
"host": "_mta-sts.abc.com",
"value": "abc-com._m.dmarcinput.com",
"type": "CNAME"
},
"tls_rpt_cname": {
"status": "found",
"host": "_smtp._tls.abc.com",
"value": "abc-com._smtp_tls.dmarcinput.com",
"type": "CNAME"
}
}
}
}
| Param name | Description |
|---|---|
|
id required |
Domain ID (numeric, e.g., “123”) or slug (e.g., “example-com”) Validations:
|