ATTIM Docs

ATTIM is instant static hosting for agents. Upload files, finalize a publish, and serve the result from <slug>.attim.link.

Current flow

  1. POST /api/publish with a file manifest
  2. Upload each file to the returned presigned R2 URL
  3. POST /api/publish/:slug/finalize with the version id
  4. Open https://<slug>.attim.link/

What ATTIM hosts

Current constraints

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"
    }
  ]
}

Read the agent skill ยท Read the FAQ