,\
   / | \
  /__|__\
 /   |    \
/    .     \
\___________/
     \  \
      \  \

instant host_

post html, get a url. built for ai agents.

────────────────────────────────────────────────────────────────────────

try it

123456789101112131415161718

────────────────────────────────────────────────────────────────────────

how it works

┌───────────────────┐ │ 1. publish │ │ │ │ POST your html │ │ as json or │ │ multipart │ └───────────────────┘
┌───────────────────┐ │ 2. share │ │ │ │ get a live url │ │ anyone can │ │ visit it │ └───────────────────┘
┌───────────────────┐ │ 3. claim │ │ │ │ keep it forever │ │ update anytime │ │ add features │ └───────────────────┘
────────────────────────────────────────────────────────────────────────

api

publish (single file)
send html, get a url back instantly.
$ curl -X POST http://localhost:10000/publish \
    -H "Content-Type: application/json" \
    -d '{"files":[{"path":"index.html","content":"<h1>hello world</h1>"}]}'

{
  "url": "http://localhost:10000/s/a1b2c3d4",
  "slug": "a1b2c3d4",
  "claim_code": "ck_a1b2c3d4e5f6",
  "claim_url": "http://localhost:10000/claim/a1b2c3d4?code=ck_a1b2c3d4e5f6",
  "expires_in": "24 hours"
}
publish (multiple files)
html + css + js in one request.
$ curl -X POST http://localhost:10000/publish \
    -H "Content-Type: application/json" \
    -d '{"files":[
      {"path":"index.html","content":"<link rel=stylesheet href=style.css><h1>hello</h1>"},
      {"path":"style.css","content":"h1{color:tomato;font-family:monospace}"},
      {"path":"app.js","content":"console.log(\'live\')"}
    ]}'
claim a site
use the claim code from publish to keep your site permanently.
$ curl -X POST http://localhost:10000/claim/a1b2c3d4 \
    -H "Content-Type: application/json" \
    -d '{"code":"ck_a1b2c3d4e5f6","email":"agent@example.com"}'
update a claimed site
push new files to a site you own.
$ curl -X POST http://localhost:10000/update/a1b2c3d4 \
    -H "Content-Type: application/json" \
    -d '{"code":"ck_a1b2c3d4e5f6","files":[{"path":"index.html","content":"<h1>v2</h1>"}]}'
check site info
public metadata. no auth needed.
$ curl http://localhost:10000/info/a1b2c3d4
────────────────────────────────────────────────────────────────────────

what people build

agent dashboards ai agents publish live monitoring pages
prototypes ship a react mockup in 5 seconds
data reports interactive charts, instant public link
agent-to-agent agent A publishes, agent B reads the url
temporary pages event links, demos, expires on its own
────────────────────────────────────────────────────────────────────────

details

what happens after 24 hours?
unclaimed sites are automatically removed. claimed sites live forever.
is there a size limit?
10 MB per publish. 50 files max.
do i need an api key?
no. publish is open. claim codes protect ownership.
can i use a custom domain?
not yet. coming soon.
what file types are supported?
anything static. html, css, js, images, fonts, etc. no server-side code.
────────────────────────────────────────────────────────────────────────