Automette docs

A template's save history

GET
/api/v1/templates/{id}/versions

Authorization

ApiKeyAuth
AuthorizationBearer <token>

API key from Settings → API Keys.

In: header

Path Parameters

id*string

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/templates/string/versions"
{  "count": 3,  "versions": [    {      "version": 3,      "summary": "restored from v1",      "current": true,      "created_at": "2026-08-31T10:20:00.000Z"    },    {      "version": 2,      "summary": "14 layers",      "current": false,      "created_at": "2026-08-30T18:02:00.000Z"    }  ]}