> ## Documentation Index
> Fetch the complete documentation index at: https://docs.onlyform.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List form submissions

> Requires submissions:read.



## OpenAPI

````yaml /openapi.json get /v1/forms/{formId}/submissions
openapi: 3.1.0
info:
  title: Onlyform Public API
  version: '2026-08-01'
  summary: >-
    Programmatic access to Onlyform workspaces, forms, submissions, analytics,
    and webhooks.
  description: >-
    The Onlyform Public API uses stable resource IDs, cursor pagination, scoped
    API keys, and structured errors. API keys are created in the Onlyform
    profile and must be sent in the X-API-Key header. Keys are shown once and
    cannot be recovered.
servers:
  - url: https://api.onlyform.com
    description: Production
security:
  - ApiKey: []
tags:
  - name: Identity
    description: Inspect the API key owner and effective scopes.
  - name: Workspaces
    description: List and manage accessible workspaces.
  - name: Forms
    description: Create and manage forms and their block definitions.
  - name: Submissions
    description: Read and remove completed form submissions.
  - name: Analytics
    description: Read aggregate form funnel metrics.
  - name: Webhooks
    description: Manage response-completed webhooks and inspect deliveries.
paths:
  /v1/forms/{formId}/submissions:
    parameters:
      - $ref: '#/components/parameters/FormId'
    get:
      tags:
        - Submissions
      summary: List form submissions
      description: Requires submissions:read.
      operationId: listFormSubmissions
      parameters:
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Cursor'
        - name: since
          in: query
          description: Include submissions at or after this timestamp.
          schema:
            type: string
            format: date-time
        - name: until
          in: query
          description: Include submissions at or before this timestamp.
          schema:
            type: string
            format: date-time
      responses:
        '200':
          description: A page of completed submissions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubmissionPage'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '422':
          $ref: '#/components/responses/ValidationFailed'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  parameters:
    FormId:
      name: formId
      in: path
      required: true
      schema:
        $ref: '#/components/schemas/ObjectId'
    Limit:
      name: limit
      in: query
      description: Number of records to return.
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 20
    Cursor:
      name: cursor
      in: query
      description: Opaque next_cursor value from the previous page.
      schema:
        type: string
  schemas:
    SubmissionPage:
      type: object
      required:
        - items
        - page
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Submission'
        page:
          $ref: '#/components/schemas/PageInfo'
    ObjectId:
      type: string
      pattern: ^[0-9a-fA-F]{24}$
      examples:
        - 507f1f77bcf86cd799439011
    Submission:
      type: object
      required:
        - id
        - form_id
        - status
        - submitted_at
        - metadata
        - answers
      properties:
        id:
          $ref: '#/components/schemas/ObjectId'
        form_id:
          $ref: '#/components/schemas/ObjectId'
        status:
          type: string
          const: completed
        submitted_at:
          type: string
          format: date-time
        completion_time:
          type:
            - number
            - 'null'
        metadata:
          type: object
          required:
            - country
            - device
            - user_agent
            - utm
          properties:
            country:
              type:
                - string
                - 'null'
            device:
              type:
                - string
                - 'null'
            user_agent:
              type:
                - string
                - 'null'
            utm:
              type: object
              additionalProperties: true
        answers:
          type: array
          items:
            $ref: '#/components/schemas/Answer'
    PageInfo:
      type: object
      required:
        - has_more
        - next_cursor
      properties:
        has_more:
          type: boolean
        next_cursor:
          type:
            - string
            - 'null'
    Error:
      type: object
      required:
        - type
        - code
        - message
        - status
        - request_id
      properties:
        type:
          type: string
        code:
          type: string
        message:
          type: string
        status:
          type: integer
        request_id:
          type: string
        details:
          type: array
          items:
            $ref: '#/components/schemas/ErrorDetail'
    Answer:
      type: object
      required:
        - field
        - value
      properties:
        field:
          type: object
          required:
            - id
            - type
            - label
          properties:
            id:
              type: string
            type:
              type: string
            label:
              type: string
        value: {}
    ErrorDetail:
      type: object
      additionalProperties: true
  responses:
    Unauthorized:
      description: Missing, invalid, expired, or revoked API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: The key lacks the required scope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: The resource does not exist or is not accessible.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ValidationFailed:
      description: The request body or query is invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    RateLimited:
      description: The key exceeded 100 requests in one minute.
      headers:
        Retry-After:
          schema:
            type: integer
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        A scoped key with the of_live_ prefix, generated from Profile > API
        keys.

````