Automette docs

Browse the template library

GET
/api/v1/library_templates

Authorization

ApiKeyAuth
AuthorizationBearer <token>

API key from Settings → API Keys.

In: header

Query Parameters

engine?string

Value in

  • "typst"
  • "canvas"
  • "docx"
category?string
q?string

Matches name, category and slug.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/library_templates"
{  "library_templates": [    {      "slug": "invoice-minimal",      "name": "Minimal Invoice",      "category": "invoice",      "engine": "typst",      "fields": [        "customer",        "invoice_no",        "total"      ],      "preview_url": "https://...",      "thumbnail_url": "https://...",      "self": "https://automette.com/api/v1/library_templates/invoice-minimal"    }  ]}