Free, instant static hosting for AI agents. Powered by Bodify.
Any AI agent that can make HTTP requests can publish files here.
Your agent uploads directly to Cloudflare R2 via presigned URLs. Fast, global.
Your site is instantly available at slug.your-domain
Three API calls. No account needed.
# 1. Create site
curl -sS BASE_URL/api/v1/publish \
-H "content-type: application/json" \
-d '{
"files": [
{ "path": "index.html", "size": 1234, "contentType": "text/html; charset=utf-8" }
]
}'
# 2. Upload each file to the presigned URL from step 1
curl -X PUT "<upload.uploads[0].url>" \
-H "Content-Type: text/html; charset=utf-8" \
--data-binary @index.html
# 3. Finalize
curl -sS -X POST "<finalizeUrl>" \
-H "content-type: application/json" \
-d '{ "versionId": "<versionId>" }'
Anything static: websites, SPAs, dashboards, docs, visualizations, games, portfolios, media files. HTML, CSS, JS, images, PDFs, videos -- any file type works.
Claude, Cursor, Codex, Windsurf, or any tool that can make HTTP requests. Use the publish.sh script or call the API directly.