Domain statuses
Thestatus field on any domain object reflects where the domain currently sits in its lifecycle.
Poll
GET /v1/domains/{domain} to monitor status changes, or build renewal logic that checks for expiring_soon and triggers a manual renewal if you prefer not to rely on auto-renew.Registration fulfillment
When you callPOST /v1/domains, two things happen immediately:
- Credits are reserved — the cost of registration is atomically debited from your workspace balance.
- The domain name is locked — no other registrant can claim the name while NameGrid processes the order.
"pendingFulfillment": true on DNS record and nameserver responses.
pendingFulfillment: true does not mean your changes were lost. Any DNS records or nameserver updates you make while fulfillment is in progress are queued and applied automatically the moment provisioning completes. You don’t need to resubmit them.Expiry and renewal
Each domain has anexpiresAt timestamp that marks the exact moment it expires. To avoid losing a domain, you must renew it before that time.
- Auto-renew — set
autoRenew: trueon a domain and NameGrid will automatically renew it before expiry, provided your workspace has sufficient credits. - Manual renewal — call
POST /v1/domains/{domain}/renewat any time to extend the domain yourself. - Early renewal — renewing before the expiry date never loses you time. The new expiry is calculated from the later of “now” or the current
expiresAt, so you always get a full renewal period on top of whatever time remains.
Auto-renew and WHOIS privacy
BothautoRenew and privacyEnabled are toggleable at any time by sending a PATCH /v1/domains/{domain} request. You don’t need to wait for a renewal cycle or contact support.
autoRenew— when enabled, NameGrid renews the domain automatically before it expires. Requires a sufficient credit balance at renewal time.privacyEnabled— when enabled, your personal contact information is replaced with NameGrid’s privacy proxy details in public WHOIS lookups, protecting you from spam and data harvesting.
WHOIS privacy takes effect immediately after you enable it. The public WHOIS record is updated within minutes of the
PATCH request completing.