Get a library template
Authorization
ApiKeyAuth API key from Settings → API Keys.
In: header
Path Parameters
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/api/v1/library_templates/string"{ "slug": "invoice-minimal", "name": "Minimal Invoice", "category": "invoice", "engine": "typst", "document": "#let data = (customer: \"Acme Ltd\",)", "fields": [ { "key": "customer", "type": "text", "example": "Acme Ltd", "primary": true } ], "assets": [ { "filename": "logo.svg", "content_type": "image/svg+xml", "size": 2104 } ], "preview_url": "https://...", "thumbnail_url": "https://...", "copy_to": "https://automette.com/api/v1/templates"}Browse the template library GET
Lists the ready-made templates you can copy into your team. This is the discovery half of copy-then-edit, the path most callers take: find the closest design here, copy it with `POST /api/v1/templates` and `from_library`, then edit the copy like any other template. `fields` is included so you can tell whether a template carries the data you have before copying anything. Read-only. Library templates are curated and promoted by hand; there is no authoring API behind this.
List renders GET
Returns renders for your team, newest first. Supports cursor-based pagination. To paginate, pass the `next_cursor` from one response as the `cursor` in the next request. `next_cursor` is `null` when there are no more pages.