BlueDeploy is designed to be driven by your AI assistant rather than by you. You give it a token once; after that you just describe what you want.
Go to your tokens page and create one. It is shown once.
Paste this into Claude, Cursor, ChatGPT, or any agent that can make HTTP requests. Replace the token with your own.
Deploy my site with BlueDeploy. Read https://bldeploy.com/llms.txt for the API, and use my token: bd_your_token_here
That single line is enough — the assistant fetches the rest itself.
“Build me a landing page for my bakery and deploy it.” Your assistant writes the site, deploys it, and gives you the URL. If the deploy fails, it reads the error and fixes it without involving you.
HTML, CSS, JavaScript, images and fonts. Also framework builds that produce static output — send the contents of dist/ or build/.
Anything needing Node, Python, PHP or a server-side database is rejected with a clear message. Support for these is in progress.
The full machine-readable API reference lives at /llms.txt. Sites are served from *.bldeploy.run, a separate domain from this one, so nothing anyone deploys can reach the platform.
curl -X POST https://bldeploy.com/api/v1/deploy \
-H "Authorization: Bearer $BLDEPLOY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"project":"my-site","files":[
{"path":"index.html","content":"<h1>Hello</h1>"}]}'