APIReferenceAnalytics
List form submissions
What visitors typed into KuikPage forms, newest first. The same rows the dashboard's Leads view shows.
Authorization
apiKey AuthorizationBearer <token>
An API key from Settings, Developers: Authorization: Bearer kc_live_...
In: header
Query Parameters
limit?integer
Items per page, 1 to 100.
Range
1 <= value <= 100Default
50cursor?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.
Format
date-timeto?string
ISO 8601 end, exclusive. Omit for now.
Format
date-timeResponse 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"}