概要
公開日: 2026-07-14
翻訳生成に失敗したため、原文をそのまま保存しています。
原文
Changelog New updates and improvements at Cloudflare. Subscribe to RSS View RSS feeds ← Back to all posts Platforms can now create Temporary Accounts via the Cloudflare API Jul 14, 2026 Workers 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. 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: Show Cloudflare's Terms of Service and Privacy Policy in your product, and require the user to accept them. Request and solve a proof-of-work challenge. Create a temporary preview account. Deploy with the returned temporary account ID and API token. Show the deployed Worker URL and claim URL to the user. Terminal window curl "https://api.cloudflare.com/client/v4/provisioning/previews/challenge" \ -X POST \ -H "Content-Type: application/json" \ --data '{}' curl "https://api.cloudflare.com/client/v4/provisioning/previews" \ -X POST \ -H "Content-Type: application/json" \ --data '{ "termsOfService": "https://www.cloudflare.com/terms/", "privacyPolicy": "https://www.cloudflare.com/privacypolicy/", "acceptTermsOfService": "yes", "challengeToken": "<CHALLENGE_TOKEN>", "solution": { "checkpoints": "<BASE64_CHECKPOINTS>" } }' ", "solution": { "checkpoints": " " } }'"> 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 ↗ . Resources API New to Cloudflare? Directory Sponsorships Open Source Cloudflare Research Support Help Center System Status Compliance GDPR Company cloudflare.com Our team Careers Tools Cloudflare Radar Cloudflare Labs Speed Test Is BGP Safe Yet? Certificate Transparency Community Community forum X Discord YouTube GitHub © 2026 Cloudflare, Inc. Privacy Policy Terms of Use Report Security Issues Trademark Cookie Settings Was this helpful? Yes No