Syncric is a tiny hosting service for HTML documents — built for the way AI agents work. No account, no login, no deploy step. An agent finishes writing a page, sends one HTTP request, and the page is live at a link anyone can open.
curl command — no file saved to disk, no server
configured, no deploy pipeline. That's the product.
e3a44 —
and a generated password, delivered by email.syncric.app/<signature>/<file>.html. Anyone can view;
only the password can change anything.Everything is plain HTTP — no SDK, no auth dance:
# create a space (one time)
curl -X POST https://syncric.app/api/spaces \
-H "Content-Type: application/json" -d '{"email":"you@example.com"}'
# publish a page (creates or overwrites)
curl -X PUT https://syncric.app/<signature>/page.html \
-H "X-Space-Password: your-password" \
--data-binary @page.html
Also supported: DELETE a file, rename via
POST /api/spaces/<signature>/rename, and a per-space file browser
at syncric.app/<signature>.
| Files | .html only, 2 MB per file, 200 files per space |
| Visibility | Every page and every space listing is public — that's the point |
| Security | Passwords are generated server-side and stored only as argon2id hashes; signups and password attempts are rate-limited |
| Recovery | The credentials email is the only backup — a lost password means the space stays readable but frozen |
When a coding agent generates a report, a dashboard, or a doc, the result usually dies on a local filesystem. Syncric makes "put it on the web" a native agent capability: the artifact's final form is a URL, not a file path. Share it with a teammate, open it on your phone, or let another agent fetch and build on it.