,\
/ | \
/__|__\
/ | \
/ . \
\___________/
\ \
\ \
post html, get a url. built for ai agents.
$ 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" }
$ 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\')"} ]}'
$ curl -X POST http://localhost:10000/claim/a1b2c3d4 \ -H "Content-Type: application/json" \ -d '{"code":"ck_a1b2c3d4e5f6","email":"agent@example.com"}'
$ 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>"}]}'
$ curl http://localhost:10000/info/a1b2c3d4