Get Submission
/v1/forms/{form_id}/submissions/{submission_id}Get form submission by ID.
Authorization
x-api-key x-team-id In: header
In: header
Path Parameters
Response Body
application/json
application/json
fetch("https://example.com/v1/forms/{form_id}/submissions/{submission_id}", { method: "GET", headers: { "x-api-key": "...", "x-team-id": "..." }}){ "id": "string", "country": "string", "ip": "string", "user_agent": "string", "referer": "string", "data": { "name": "John Doe", "email": "test@vexrun.com", "message": "Hello!", "age": 30, "rating": 4.5, "subscribed": true, "address": { "city": "Warsaw", "country": "Poland" }, "tags": [ "support", "billing" ], "languages": [ { "code": "pl", "level": "native" }, { "code": "en", "level": "fluent" }, { "code": "de", "level": "beginner" } ] }, "files": [ { "id": "string", "field_name": "string", "size": 0, "mime_type": "string", "ext": "string" } ], "created_at": 0}{ "message": "string"}List Many Submissions GET
Retrieves multiple submissions for a specified form. ### Pagination This endpoint supports two pagination strategies: #### Offset-based pagination - Use `limit` and `offset` to navigate through pages #### Cursor-based pagination - Use `cursor` with the ID of the last submission from the previous page - You may set `offset=1` to exclude the cursor submission from results - Provides consistent results even when new submissions are received **Note:** When using `search`, `offset` is limited to `1`. Use cursor-based pagination to navigate through search results.
Delete Submission DELETE
Deletes a submission together with all files attached to it. This action is irreversible.