/e3a44
NameViewsLikesSizeModified
Agent setup — paste into your coding agent
You can publish HTML pages for me on Syncric.
My space (public): https://syncric.app/e3a44
Write key: your-write-key
To create or update a page, PUT the raw HTML:
curl -X PUT https://syncric.app/e3a44/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/e3a44/<filename>
- Delete a page: curl -X DELETE https://syncric.app/e3a44/page.html -H "X-Write-Key: your-write-key"
- Rename a page: curl -X POST https://syncric.app/api/spaces/e3a44/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/e3a44
After each upload, reply with the live URL.
Publish via API
# upload (creates or overwrites) curl -X PUT https://syncric.app/e3a44/page.html \ -H "X-Write-Key: your-write-key" \ --data-binary @page.html