KuikCodeDocs
APIReferenceAnalytics

List form submissions

GET
/submissions

What visitors typed into KuikPage forms, newest first. The same rows the dashboard's Leads view shows.

AuthorizationBearer <token>

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

In: header

Query Parameters

limit?integer

Items per page, 1 to 100.

Range1 <= value <= 100
Default50
cursor?string

The next_cursor from the previous page. Omit for the first page.

pageId?string

One KuikPage.

from?string

ISO 8601 start, inclusive. Omit for the start of the plan's history.

Formatdate-time
to?string

ISO 8601 end, exclusive. Omit for now.

Formatdate-time

Response Body

application/json

application/json

curl -X GET "https://example.com/submissions"
{  "data": [    {      "id": "string",      "pageId": "string",      "pageName": "string",      "blockId": "string",      "data": {        "property1": null,        "property2": null      },      "country": "string",      "createdAt": "2019-08-24T14:15:22Z"    }  ],  "next_cursor": "string"}