Skip to main content
GET
/
api
/
domains
cURL
curl --request GET \
  --url https://domainwarden.app/api/domains \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "019a11e5-3072-707a-82b2-91bf8b940e80",
      "label": "DigitalOcean",
      "domain": "digitalocean.com",
      "description": null,
      "colour": null,
      "provider": "MarkMonitor Inc.",
      "expires_at": "2030-04-12",
      "components": {
        "whois": {
          "is_enabled": true,
          "check_interval": "weekly",
          "check_status": "HEALTHY",
          "latest_check_details": "Initial check completed via RDAP at 2025-10-24 04:18:47 UTC and reported as healthy.",
          "last_checked_at": "2025-10-24T04:18:47.000000Z",
          "next_check_at": null,
          "last_manual_check_at": null,
          "changes_detected_at": null,
          "has_changed_recently": false,
          "was_manually_checked_recently": false
        },
        "dns": {
          "is_enabled": true,
          "check_interval": "weekly",
          "check_status": "HEALTHY",
          "latest_check_details": "Initial DNS check completed at 2025-10-23 16:30:49 UTC and reported as healthy.",
          "last_checked_at": "2025-10-23T16:30:49.000000Z",
          "next_check_at": "2025-10-30T16:30:49.000000Z",
          "last_manual_check_at": null,
          "changes_detected_at": null,
          "has_changed_recently": false,
          "was_manually_checked_recently": false,
          "enabled_records": [
            "A",
            "AAAA",
            "CNAME",
            "MX",
            "TXT",
            "SRV",
            "CAA",
            "PTR",
            "SOA"
          ]
        },
        "ssl": {
          "is_enabled": true,
          "issuer": null,
          "organization": null,
          "expires_at": null,
          "last_checked_at": null,
          "last_found_invalid_at": null,
          "last_considered_valid_at": null,
          "has_changed_recently": false
        }
      },
      "created_at": "2025-10-23 16:27:04",
      "updated_at": "2025-10-24 08:23:11"
    }
  ],
  "links": {
    "first": "https://domainwarden.app/api/domains?page=1",
    "last": "https://domainwarden.app/api/domains?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?page=1",
        "label": "1",
        "page": 1,
        "active": true
      },
      {
        "url": null,
        "label": "Next &raquo;",
        "page": null,
        "active": false
      }
    ],
    "path": "https://domainwarden.app/api/domains",
    "per_page": 15,
    "to": 1,
    "total": 1
  }
}

Authorizations

Authorization
string
header
required

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

Response

data
object[]
Example:
[
{
"id": "019a11e5-3072-707a-82b2-91bf8b940e80",
"label": "DigitalOcean",
"domain": "digitalocean.com",
"description": null,
"colour": null,
"provider": "MarkMonitor Inc.",
"expires_at": "2030-04-12",
"components": {
"whois": {
"is_enabled": true,
"check_interval": "weekly",
"check_status": "HEALTHY",
"latest_check_details": "Initial check completed via RDAP at 2025-10-24 04:18:47 UTC and reported as healthy.",
"last_checked_at": "2025-10-24T04:18:47.000000Z",
"next_check_at": null,
"last_manual_check_at": null,
"changes_detected_at": null,
"has_changed_recently": false,
"was_manually_checked_recently": false
},
"dns": {
"is_enabled": true,
"check_interval": "weekly",
"check_status": "HEALTHY",
"latest_check_details": "Initial DNS check completed at 2025-10-23 16:30:49 UTC and reported as healthy.",
"last_checked_at": "2025-10-23T16:30:49.000000Z",
"next_check_at": "2025-10-30T16:30:49.000000Z",
"last_manual_check_at": null,
"changes_detected_at": null,
"has_changed_recently": false,
"was_manually_checked_recently": false,
"enabled_records": [
"A",
"AAAA",
"CNAME",
"MX",
"TXT",
"SRV",
"CAA",
"PTR",
"SOA"
]
},
"ssl": {
"is_enabled": true,
"issuer": null,
"organization": null,
"expires_at": null,
"last_checked_at": null,
"last_found_invalid_at": null,
"last_considered_valid_at": null,
"has_changed_recently": false
}
},
"created_at": "2025-10-23 16:27:04",
"updated_at": "2025-10-24 08:23:11"
}
]
meta
object