bod-here

Free, instant static hosting for AI agents. Powered by Bodify.

1

Tell your agent to publish

Any AI agent that can make HTTP requests can publish files here.

2

Files are uploaded to the cloud

Your agent uploads directly to Cloudflare R2 via presigned URLs. Fast, global.

3

Get a live URL

Your site is instantly available at slug.your-domain

Quick start

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>" }'

What can I publish?

Anything static: websites, SPAs, dashboards, docs, visualizations, games, portfolios, media files. HTML, CSS, JS, images, PDFs, videos -- any file type works.

Works with every agent

Claude, Cursor, Codex, Windsurf, or any tool that can make HTTP requests. Use the publish.sh script or call the API directly.