v51

OpenAPI 3.0.0raw.githubusercontent.com2026-08-01267339950.6 KB
Domain Access Verifier: Verifications

Get domain verifications

Retrieve a list of pending and completed domain verifications.

get/api/v2/direct/verifications/active

Request body

domainsstring[] required

The list of domains for which to get verification details for.

Example request

{
  "domains": [
    "example.com"
  ]
}

Response

Success response

Example response

{
  "data": {
    "PENDING": {
      "pixel.tld": {
        "NAMESERVERS": {
          "records": [
            "ns1.nameserver.com",
            "ns2.nameserver.com"
          ],
          "last_verification_attempt": "2025-08-05 13:15:00",
          "next_verification_attempt": "2025-08-05 14:30:00",
          "verification_expiration": "2025-08-12 13:15:00"
        },
        "TXT": {
          "records": [
            "txt-verification-hash"
          ],
          "last_verification_attempt": "2025-08-05 14:45:00",
          "next_verification_attempt": "2025-08-05 15:00:00",
          "verification_expiration": "2025-08-12 14:45:00"
        }
      }
    },
    "VERIFIED": {
      "byte.tld": {
        "TXT": {
          "records": [
            "other-txt-verification-hash"
          ]
        }
      }
    }
  }
}