Use this endpoint to inspect the current state of a domain at any point in its lifecycle — from initial registration through to an active TLS certificate. The response includes the domain’s status, creation timestamp, and, once ownership has been verified, the exact time verification occurred. Poll this endpoint to track progress after triggering verification or certificate issuance.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/plutoploy/dns-handling/llms.txt
Use this file to discover all available pages before exploring further.
Method and Path
Path Parameters
The unique domain identifier returned by
POST /domains at registration time. This is a 32-character hex string derived from 16 random bytes.Response — 200 OK
The unique identifier for this domain record, matching the
{id} path parameter.The fully-qualified domain name that was registered, e.g.
example.com.The current lifecycle status of the domain. One of:
pending— registered but ownership not yet confirmedverified— TXT record check passed; domain ownership is provencertificate_pending— a TLS certificate order has been placed with the ACME provider and is being processedactive— a valid TLS certificate has been issued and storedfailed— certificate issuance failed (e.g. ACME polling timed out)
RFC3339 timestamp recording when domain ownership was successfully verified. This field is omitted when
status is pending and is present for all statuses at or beyond verified.RFC3339 timestamp recording when the domain was first registered with
POST /domains.Examples
Pending Domain
Active Domain
Error Cases
| Status | Cause |
|---|---|
404 Not Found | No domain record exists for the supplied {id}. |