ATTIM Docs
ATTIM is instant static hosting for agents. Upload files, finalize a publish, and serve the result from <slug>.attim.link.
Current flow
POST /api/publishwith a file manifest- Upload each file to the returned presigned R2 URL
POST /api/publish/:slug/finalizewith the version id- Open
https://<slug>.attim.link/
What ATTIM hosts
- HTML
- CSS
- JavaScript
- Images
- Fonts
- Other static assets
Current constraints
- Static hosting only
- Anonymous publishes are supported
- Claim/permanence flow is not fully exposed yet
- Cleanup/expiry automation is active
Core endpoints
POST /api/publish
POST /api/publish/:slug/finalize
GET /_site/:slug
GET /_site/:slug/*
Example publish request
{
"files": [
{
"path": "index.html",
"size": 1234,
"contentType": "text/html; charset=utf-8"
}
]
}