---
title: "Get form submissions"
method: POST
path: "/public/get-form-submissions-v2"
tags: ["Forms"]
---

# Get form submissions

`POST /public/get-form-submissions-v2`

Get list of submissions for a specific form

Authentication with the "FERMION-API-KEY" header is required to use this endpoint.

Rate limit: Maximum 60 requests in a window of 1m.

## Request body

- object
  - `data` object[], required
    - `data` object, required
      - `formId` string, required — The unique identifier of the form to get submissions for

## Response `200`

API Response Body

- object[]
  - `output` union, required
    - object
      - `status` 'ok', required
      - `data` object, required
        - `submissions` object[], required — List of form submissions
          - `submissionId` string, required — Unique identifier for this submission
          - `userId` string, nullable, required — User ID if authenticated, null for anonymous submissions
          - `submittedAt` string, required — Timestamp of when the submission was created
          - `answers` object[], required — List of answers for each form block
            - `blockId` string, required — Unique identifier for the form block/question
            - `blockType` string, required — Type of the form block (e.g., ShortText, SingleSelect)
            - `question` union, required — The question text for this block
              - …
            - `answer` union, required — The answer value submitted for this block
              - …
    - object
      - `status` 'error', required
      - `errorMessage` string, required

---

[API](https://skmtc.net/fermion/apis/fermion-backend-api.md) · [All operations](https://skmtc.net/fermion/apis/fermion-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fermion/fermion-backend-api/revisions/7ce364c8820b/schema)
