TEASEDocs
API ReferenceLandings

List a domain's QR codes

Returns every QR code of the domain (in creation order) together with its live funnel stats — scans, labelled visits, human button clicks, and the subscriptions/revenue attributed to those clicks. 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

Path Parameters

domain*string

Registered hostname, e.g. links.creator.com.

Response Body

application/json

application/json

application/json

GET
/api/admin/qr/{domain}
curl -X GET "https://example.com/api/admin/qr/string"
{  "items": [    {      "id": 3,      "domain": "links.creator.com",      "slug": "flyer",      "path": "/qr/flyer",      "title": "Club flyer",      "channel": "instagram",      "source": "qr-flyer",      "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      },      "active": true,      "created_at": 1752537600,      "updated_at": 1752537600,      "stats": {        "scans": 214,        "visits": 198,        "clicks": 161,        "subs": 7,        "revenue_cents": 41300      }    }  ]}
{  "detail": "auth required"}
{  "detail": {    "code": "domain_not_found",    "message": "Домен не найден"  }}