releases.shpreview

Platforms deploy Workers without user Cloudflare sign-in

1 featureThis release1 featureNew capabilitiesAI-tallied from the release notes
From the original release noteView original ↗

Platforms can now create temporary preview accounts through the Cloudflare REST API. This lets your platform deploy a live Worker before the user signs in to Cloudflare.

With the Temporary Accounts API, coding agents, AI app builders, and other platforms can build a similar flow for generated Workers and supported resources.

Your platform can keep users in its onboarding flow while they generate, deploy, and test an application. Users do not need an existing Cloudflare account, and your platform does not need write access to one.

Diagram showing an AI agent deploying, verifying, and redeploying a Worker in a temporary account, then a user authenticating and claiming the account to keep its resources

The API returns a claim URL that lets the user make the temporary account and its resources permanent.

Cloudflare Drop demonstrates this preview-and-claim pattern for static sites. Someone can upload a site, test and share it for one hour, then sign in or create an account only when they want to keep it.

This API expands the flow first introduced with wrangler deploy --temporary. Your backend now controls the provisioning and deployment experience directly:

  1. Show Cloudflare's Terms of Service and Privacy Policy in your product, and require the user to accept them.
  2. Request and solve a proof-of-work challenge.
  3. Create a temporary preview account.
  4. Deploy with the returned temporary account ID and API token.
  5. Show the deployed Worker URL and claim URL to the user.
<div><div><span>curl</span><span> </span><span>"https://api.cloudflare.com/client/v4/provisioning/previews/challenge"</span><span> </span><span>\</span></div></div><div><div><span>  </span><span>-X</span><span> </span><span>POST</span><span> </span><span>\</span></div></div><div><div><span>  </span><span>-H</span><span> </span><span>"Content-Type: application/json"</span><span> </span><span>\</span></div></div><div><div><span>  </span><span>--data</span><span> </span><span>'{}'</span></div></div><div><div>
</div></div><div><div><span>curl</span><span> </span><span>"https://api.cloudflare.com/client/v4/provisioning/previews"</span><span> </span><span>\</span></div></div><div><div><span>  </span><span>-X</span><span> </span><span>POST</span><span> </span><span>\</span></div></div><div><div><span>  </span><span>-H</span><span> </span><span>"Content-Type: application/json"</span><span> </span><span>\</span></div></div><div><div><span>  </span><span>--data</span><span> </span><span>'{</span></div></div><div><div><span><span>    </span></span><span>"termsOfService": "https://www.cloudflare.com/terms/",</span></div></div><div><div><span><span>    </span></span><span>"privacyPolicy": "https://www.cloudflare.com/privacypolicy/",</span></div></div><div><div><span><span>    </span></span><span>"acceptTermsOfService": "yes",</span></div></div><div><div><span><span>    </span></span><span>"challengeToken": "<CHALLENGE_TOKEN>",</span></div></div><div><div><span><span>    </span></span><span>"solution": {</span></div></div><div><div><span><span>      </span></span><span>"checkpoints": "<BASE64_CHECKPOINTS>"</span></div></div><div><div><span><span>    </span></span><span>}</span></div></div><div><div><span><span>  </span></span><span>}'</span></div></div>

For the complete API flow, proof-of-work requirements, supported products, and limits, refer to Claim deployments (temporary accounts). For the background and design goals behind this flow, refer to Temporary Cloudflare Accounts for AI agents.

Fetched July 14, 2026