What’s actually changing
Cloudflare’s changelog states the change and its deadline directly:
“The legacy Registrar domain management endpoints are deprecated and will reach their end of life on September 27, 2026”
Unlike the Workers KV deprecation earlier in this pillar, which is a pure URL path swap with an identical request/response shape, this migration points to a genuinely newer, broader API: Cloudflare describes the replacement Registrar API as adding domain search and availability checking alongside registration and management, not just the same operations at a new path.
Confirm the exact new endpoint shape yourself
This deprecation doesn’t reduce to a mechanical path substitution the way the KV routes change does. Pull the current Registrar API reference directly and confirm the exact request/response shape for whatever operation your automation performs, register, renew, transfer, or update, rather than assuming it mirrors the legacy endpoint’s structure.
Structural Comparison Matrix
| Operational Aspect | Legacy Registrar API (deprecated) | New Registrar API |
|---|---|---|
| Domain management endpoints | GET/PUT /accounts/{account_id}/registrar/domains | Documented separately in the new Registrar API reference |
| Domain search/availability check | Not part of this API | Included |
| Available after 2026-09-27 | Removed | Active |
Fix it: find and prioritize low-traffic automation
grep -rn "registrar/domains" --include="*.tf" --include="*.sh" --include="*.mjs" .Domain registration and renewal automation often runs rarely, once a year at renewal time, or only when a new domain is provisioned, which makes it easy for a deprecation notice to slip past whoever maintains it. If this grep finds anything, flag it for review now rather than waiting for the next renewal cycle to discover it silently stopped working.
Confirmed version
Sourced from Cloudflare’s official changelog, published 2026-06-29, documenting a deprecation effective 2026-04-10 and an end of life of 2026-09-27. The new Registrar API’s exact endpoint shape wasn’t independently verified here; confirm against Cloudflare’s live Registrar API reference before migrating. Browse more posts like this in the Data Automation archive.







