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

# Get Responses

> Get all submissions for a form with optional pagination.



## OpenAPI

````yaml openapi.json get /forms/{id}/responses
openapi: 3.1.0
info:
  title: GeniusForms API
  description: >-
    AI-powered form builder API. Create forms manually or generate them from
    natural language prompts.
  version: 1.0.0
  contact:
    name: GeniusForms Support
    email: support@geniusforms.ai
    url: https://geniusforms.ai
servers:
  - url: https://geniusforms.ai/api/v1
    description: Production
  - url: http://localhost:8000/api/v1
    description: Local Development
security:
  - ApiKeyAuth: []
paths:
  /forms/{id}/responses:
    get:
      tags:
        - Responses
      summary: Get Responses
      description: Get all submissions for a form with optional pagination.
      operationId: getResponses
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
          description: Form ID
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
            maximum: 500
          description: Max results to return
        - name: offset
          in: query
          schema:
            type: integer
            default: 0
          description: Pagination offset
      responses:
        '200':
          description: Form responses
          content:
            application/json:
              schema:
                type: object
                properties:
                  responses:
                    type: array
                    items:
                      $ref: '#/components/schemas/Response'
                  total:
                    type: integer
                  hasMore:
                    type: boolean
                  limit:
                    type: integer
                  offset:
                    type: integer
components:
  schemas:
    Response:
      type: object
      properties:
        id:
          type: string
          example: session_abc123
        submittedAt:
          type: string
          format: date-time
        data:
          type: object
          additionalProperties: true
          example:
            Your name: John Doe
            Your email: john@example.com
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key obtained from your GeniusForms dashboard

````