TEASEDocs
API ReferenceLandings

List the QR design catalog

Returns the built-in catalog of 100 QR designs — 10 shape families × 10 colour palettes, each item carrying a complete design config for the engine. Pass a catalog id as preset when creating or editing a code, or take its design as a starting point for a custom one. Requires a read-scoped key.

Authorization

bearerAuth
AuthorizationBearer <token>

Your al_live_<prefix>_<secret> API key. Mint and manage keys in the dashboard.

In: header

Response Body

application/json

application/json

GET
/api/admin/qr/presets
curl -X GET "https://example.com/api/admin/qr/presets"
{  "items": [    {      "id": "rounded-insta",      "name": "Скругление · Инста",      "family": "rounded",      "palette": "insta",      "design": {        "module": "rounded",        "eye_frame": "rounded",        "eye_dot": "rounded",        "fg_grad": {          "kind": "linear",          "stops": [            [              0,              "#7a3ff2"            ],            [              0.5,              "#e1306c"            ],            [              1,              "#fcaf45"            ]          ]        },        "bg": "#ffffff",        "card_radius": 28      }    }  ]}
{  "detail": "auth required"}