Skip to main content
GET
/
api
/
domains
/
{domain_id}
/
notification-channels
/
history
cURL
curl --request GET \
  --url https://domainwarden.app/api/domains/{domain_id}/notification-channels/history \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "019a11e5-3072-707a-82b2-91bf8b940e80",
      "method": "email",
      "method_human": "Email",
      "type": "whois_expiry_warning",
      "sent_at": "2025-10-24 08:30:15",
      "sent_at_human": "3 days ago"
    },
    {
      "id": "019a11e5-4183-709b-93c3-a2cf9c951f91",
      "method": "discord",
      "method_human": "Discord",
      "type": "dns_records_changed",
      "sent_at": "2025-10-22 14:22:30",
      "sent_at_human": "5 days ago"
    },
    {
      "id": "019a11e5-5294-710c-a4d4-b3dfa4a62fa2",
      "method": "slack",
      "method_human": "Slack",
      "type": "ssl_certificate_expiring",
      "sent_at": "2025-10-20 09:15:45",
      "sent_at_human": "7 days ago"
    }
  ],
  "links": {
    "first": "https://domainwarden.app/api/domains/019a11e5-3072-707a-82b2-91bf8b940e80/notification-history?page=1",
    "last": "https://domainwarden.app/api/domains/019a11e5-3072-707a-82b2-91bf8b940e80/notification-history?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-history?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-history",
    "per_page": 15,
    "to": 3,
    "total": 3
  }
}

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",
"method": "email",
"method_human": "Email",
"type": "whois_expiry_warning",
"sent_at": "2025-10-24 08:30:15",
"sent_at_human": "3 days ago"
},
{
"id": "019a11e5-4183-709b-93c3-a2cf9c951f91",
"method": "discord",
"method_human": "Discord",
"type": "dns_records_changed",
"sent_at": "2025-10-22 14:22:30",
"sent_at_human": "5 days ago"
},
{
"id": "019a11e5-5294-710c-a4d4-b3dfa4a62fa2",
"method": "slack",
"method_human": "Slack",
"type": "ssl_certificate_expiring",
"sent_at": "2025-10-20 09:15:45",
"sent_at_human": "7 days ago"
}
]
meta
object