For AI agents & automation
One HTTP call. Live URL.
Deploy from any AI agent with zero authentication. Post a file, get a URL.
Deploy in seconds
No API key. No login. No config file.
bash
curl -X POST https://api.zerodeploy.dev/drop \
-H "Content-Type: text/html" \
--data-binary @index.html json
{
"url": "https://shy-hill-9433.zerodeploy.app",
"claim_token": "zdc_a1b2c3d4...",
"expires_at": "2026-03-11T12:00:00Z",
"next_steps": {
"redeploy": { "method": "POST", "url": "/drop", "headers": { "X-Claim-Token": "zdc_..." } },
"claim": { "url": "https://dashboard.zerodeploy.dev/claim?token=zdc_..." }
}
} Works with every AI agent
Any agent that can make HTTP requests can deploy to ZeroDeploy.
Claude Code
Claude Code can deploy directly using the CLI or the Drop API. Tell it to "deploy this site" and it handles the rest.
prompt
Build a landing page for my coffee shop and deploy it to ZeroDeploy.dev Cursor
Cursor can call the Drop API to deploy your project. Use --json output for structured results it can parse.
bash
cd dist && tar -czf ../site.tar.gz . && \
curl -X POST https://api.zerodeploy.dev/drop \
-H "Content-Type: application/gzip" \
--data-binary @../site.tar.gz ChatGPT
ChatGPT can generate HTML and deploy it with one HTTP call. No file system needed — pipe the output directly.
bash