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,
"created_at": "2020-04-21T23:33:47.526Z",
"updated_at": "2023-04-06T16:00:24.086Z",
"tags": [
{
"id": 1,
"name": "Production",
"color": "#3B82F6"
},
{
"id": 2,
"name": "Client-A",
"color": "#10B981"
}
]
}
| Param name | Description |
|---|---|
|
id required |
Domain ID (numeric, e.g., “123”) or slug (e.g., “example-com”) Validations:
|