Provide current and historical ownership information on domains / IPs. Identify all connections between domains, registrants, registrars, and DNS servers.
Understanding pendingCreate, sentinel dates, and paused domain lifecycles
KEY POINT: The year 3000 and beyond is generally a sentinel date: a machine-readable way to say “do not run the normal lifecycle timer while this operation awaits a decision.” It is not a centuries-long registration.
Why a Domain Can Appear to Expire in the Year 3000 and Beyond
When a registrar submits a domain-registration request, the answer is normally immediate: the registry either creates the domain or rejects the command. Some registrations, however, require additional review. The registry may need to verify eligibility, obtain third-party approval, enforce a reserved-name policy, or investigate a request that triggered an administrative rule.
This is where the EPP status pendingCreate enters the picture. EPP—the Extensible Provisioning Protocol—is the standard registrars use to send provisioning commands to registries. Under the EPP domain-name standard, pendingCreate means the registry has processed a create command but has not completed the requested action. The standard explicitly allows a delay for human review or third-party action.

A critical distinction: two different dates
In the documented InternetNZ implementation, the date 3000-01-01 is not the domain’s ordinary expiration date. InternetNZ calculates the real expiry date from the request date and requested term. It then sets a separate internal field—Life Cycle State Ends—to the year 3000+ while the create request awaits approval.
| Field or signal | What it represents | During pendingCreate |
|---|---|---|
| Registration expiry | End of the paid registration term | Request date plus the selected term |
| Life Cycle State Ends | When automation should leave the current state | Temporarily set to 3000-01-01 |
| pendingCreate | EPP operation has not completed | Removed after approval or rejection |
| serverHold | DNS delegation is not published | Keeps the pending domain from resolving |
The year 3000+ is not part of EPP
EPP defines the meaning of pendingCreate; it does not tell registries to use the year 3000+. The date is an implementation choice inside a registry platform. RFC 5731 says a pending transform command has been processed but not completed, and it requires the pending status to be removed when the action finishes.
InternetNZ offers a concrete example. If a “Block – Create” rule permits an authorized override, its system assigns pendingCreate, applies protective restrictions, records the real expiry date, sets Life Cycle State Ends to 3000-01-01, suspends automatic lifecycle transitions, and places the request on a registry dashboard for review.
Why use a date instead of a special flag?
Registry software commonly models a domain as a sequence of states with deadlines. A scheduler can periodically ask which objects have reached the end of their current state. Giving a paused object a deadline far beyond any realistic review period allows that same scheduler to ignore it without immediately advancing the domain.
DESIGN PATTERN: A far-future value such as 3400-01-01 is called a sentinel value. It stands for a condition—“indefinitely paused”—rather than a literal business deadline.

What happens while the request is pending?
A pending domain object may already exist in the registry database, but that does not mean the registration is fully approved or usable. In InternetNZ’s documented process, serverHold prevents publication of the domain’s DNS delegation. The other server-imposed restrictions prevent renewal, transfer, or update while the decision is outstanding.
IANA’s RDAP registry describes “pending create” as a request received for creation of an object when that action is not yet complete. It describes “server hold” as a server-set status under which the domain’s DNS delegation must not be published.
Approval and rejection
If the registry approves the request, it removes pendingCreate and the associated restrictions, replaces the year-3000+ deadline with the real end of the add period, and resumes conventional lifecycle processing. If the request is rejected, InternetNZ’s guide says the object moves to pendingDelete, the lifecycle deadline is reset according to that state, and the registrar receives a refund of the registration charge.
Is the domain really registered until the year 3000 and beyond?
No. In the InternetNZ example, the real expiry date remains based on the selected registration term. The year-3000 value controls the end of the current lifecycle state; it does not grant a centuries-long registration.
This distinction matters because WHOIS, RDAP, registrar dashboards, data warehouses, and third-party lookup services may label or map dates differently. If an internal state deadline is presented as “expiration,” a user may understandably—but incorrectly—conclude that the domain has been registered for nearly a thousand years.
How to interpret a distant date
A far-future value should be interpreted together with its field name, the domain’s statuses, the authoritative registry’s documentation, the registration-expiration event, and any serverHold or other server-imposed restrictions. One date by itself is not enough to determine ownership, availability, delegation, or lifecycle stage.
Registry or registrar?
This behavior is principally a registry function. The registrar submits the create command for its customer and reports the outcome, but the registry maintains the authoritative object, assigns server-side statuses, controls publication in the top-level-domain zone, and operates the lifecycle scheduler. A registrar could use a similar sentinel in its own order system, but that would be separate and non-authoritative.
Operational cautions
Sentinel dates are convenient but can confuse downstream software. Monitoring systems may report hundreds of thousands of days remaining. Security tools may misclassify the record, analytics can distort duration calculations, and date libraries with narrower supported ranges may reject the value.
Systems consuming registration data should preserve the source field’s semantics, process status and event type alongside the date, and treat unusually distant values as possible lifecycle-control markers instead of automatically calling them expiration dates.
THE TAKEAWAY: pendingCreate is the standards-based status; the year 3000 is an implementation technique. The status says the create request is incomplete. The distant date tells a particular registry’s automation not to advance the ordinary lifecycle clock.
Sources
- RFC 5731: Extensible Provisioning Protocol Domain Name Mapping — Defines pendingCreate and asynchronous command review.
- InternetNZ Registrar Guide for IRS 7.21 — Documents the 3000-01-01 Life Cycle State Ends value and the approval workflow.
- IANA RDAP JSON Values — Defines public RDAP status and event terminology.
- InternetNZ Registry System — Explains InternetNZ’s registry role and registrar access.