Automette docs

List engine reference pages

GET
/api/v1/skills

Authorization

ApiKeyAuth
AuthorizationBearer <token>

API key from Settings → API Keys.

In: header

Query Parameters

engine?string

Return only pages that apply to this engine, plus cross-engine ones.

Value in

  • "typst"
  • "canvas"

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/skills"
{  "skills": [    {      "id": "typst",      "title": "Typst skill",      "kind": "skill",      "engine": "typst",      "summary": "The complete Typst reference: syntax, field annotations, images, the compatibility rules, and the catalogue of errors that actually happen.",      "self": "https://automette.com/api/v1/skills/typst"    },    {      "id": "fonts",      "title": "Font catalogue",      "kind": "reference",      "engine": "both",      "summary": "Every available font family with its weights, italic weights, and which families are missing the ★ ✓ ₹ → symbols.",      "self": "https://automette.com/api/v1/skills/fonts"    }  ]}