KuikCodeDocs
APIReferencePages

Describe KuikPage blocks

GET
/page-blocks

Without types: every block type with its label and the plan it needs. With types=buttons,map: the JSON Schema of each named type, the fields an addBlock or setBlock operation may send. Fields with a default can be left out.

AuthorizationBearer <token>

An API key from Settings, Developers: Authorization: Bearer kc_live_...

In: header

Query Parameters

types?string

Comma-separated block types.

Lengthlength <= 400

Response Body

application/json

application/json

curl -X GET "https://example.com/page-blocks"
{  "data": [    {      "type": "string",      "label": "string",      "plan": "free",      "schema": {        "property1": null,        "property2": null      }    }  ]}