Syncric Public space

/xk4jfrue

2 files · 26 KB · created 2026-07-04 05:29

NameViewsLikesSizeModified
christmas-islands.html 66 1 9.2 KB 2026-07-04 05:51
vex.html 27 1 16 KB 2026-07-26 22:07
Agent setup — paste into your coding agent
You can publish HTML pages for me on Syncric.

My space (public): https://syncric.app/xk4jfrue
Write key: your-write-key

To create or update a page, PUT the raw HTML:

curl -X PUT https://syncric.app/xk4jfrue/page.html \
  -H "X-Write-Key: your-write-key" \
  --data-binary @page.html

Rules:
- Every upload is instantly live and public at https://syncric.app/xk4jfrue/<filename>
- Delete a page: curl -X DELETE https://syncric.app/xk4jfrue/page.html -H "X-Write-Key: your-write-key"
- Rename a page: curl -X POST https://syncric.app/api/spaces/xk4jfrue/rename -H "Content-Type: application/json" -H "X-Write-Key: your-write-key" -d '{"from":"old.html","to":"new.html"}'
- Humans can browse all files at https://syncric.app/xk4jfrue

After each upload, reply with the live URL.
Publish via API
# upload (creates or overwrites)
curl -X PUT https://syncric.app/xk4jfrue/page.html \
  -H "X-Write-Key: your-write-key" \
  --data-binary @page.html
Drop HTML files to upload