Skip to main content
GET
/
api
/
domains
/
{domain_id}
/
notification-channels
cURL
curl --request GET \
  --url https://domainwarden.app/api/domains/{domain_id}/notification-channels \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "019a11e5-3072-707a-82b2-91bf8b940e80",
      "label": "Production Email Alerts",
      "type": "email",
      "type_human": "Email",
      "whois_notifications_enabled": true,
      "dns_notifications_enabled": true,
      "ssl_notifications_enabled": true,
      "is_protected": false,
      "is_disabled": false,
      "disabled_reason": null,
      "last_notification_sent_at": "2025-10-24 08:30:15",
      "last_notification_sent_at_human": "3 days ago",
      "created_at": "2025-10-20 14:22:30",
      "created_at_human": "7 days ago"
    },
    {
      "id": "019a11e5-4183-709b-93c3-a2cf9c951f91",
      "label": "Discord Webhook",
      "type": "discord",
      "type_human": "Discord",
      "whois_notifications_enabled": true,
      "dns_notifications_enabled": false,
      "ssl_notifications_enabled": true,
      "is_protected": false,
      "is_disabled": false,
      "disabled_reason": null,
      "last_notification_sent_at": null,
      "last_notification_sent_at_human": null,
      "created_at": "2025-10-22 09:15:45",
      "created_at_human": "5 days ago"
    }
  ],
  "links": {
    "first": "https://domainwarden.app/api/domains/019a11e5-3072-707a-82b2-91bf8b940e80/notification-channels?page=1",
    "last": "https://domainwarden.app/api/domains/019a11e5-3072-707a-82b2-91bf8b940e80/notification-channels?page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "links": [
      {
        "url": null,
        "label": "&laquo; Previous",
        "page": null,
        "active": false
      },
      {
        "url": "https://domainwarden.app/api/domains/019a11e5-3072-707a-82b2-91bf8b940e80/notification-channels?page=1",
        "label": "1",
        "page": 1,
        "active": true
      },
      {
        "url": null,
        "label": "Next &raquo;",
        "page": null,
        "active": false
      }
    ],
    "path": "https://domainwarden.app/api/domains/019a11e5-3072-707a-82b2-91bf8b940e80/notification-channels",
    "per_page": 15,
    "to": 2,
    "total": 2
  }
}

Authorizations

Authorization
string
header
required

You can obtain your API Token from your Domainwarden account settings.

Path Parameters

domain_id
string
required

The ID of the domain.

Response

data
object[]
Example:
[
{
"id": "019a11e5-3072-707a-82b2-91bf8b940e80",
"label": "Production Email Alerts",
"type": "email",
"type_human": "Email",
"whois_notifications_enabled": true,
"dns_notifications_enabled": true,
"ssl_notifications_enabled": true,
"is_protected": false,
"is_disabled": false,
"disabled_reason": null,
"last_notification_sent_at": "2025-10-24 08:30:15",
"last_notification_sent_at_human": "3 days ago",
"created_at": "2025-10-20 14:22:30",
"created_at_human": "7 days ago"
},
{
"id": "019a11e5-4183-709b-93c3-a2cf9c951f91",
"label": "Discord Webhook",
"type": "discord",
"type_human": "Discord",
"whois_notifications_enabled": true,
"dns_notifications_enabled": false,
"ssl_notifications_enabled": true,
"is_protected": false,
"is_disabled": false,
"disabled_reason": null,
"last_notification_sent_at": null,
"last_notification_sent_at_human": null,
"created_at": "2025-10-22 09:15:45",
"created_at_human": "5 days ago"
}
]
meta
object