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

# Get Forms

> Retrieve all forms associated with the authenticated user.



## OpenAPI

````yaml get /v1/forms
openapi: 3.1.0
info:
  title: AI Form-Filler API
  version: 0.1.0
servers:
  - url: https://api.simplicity.ai
    description: Production
  - url: http://localhost:8000
    description: Local
security: []
paths:
  /v1/forms:
    get:
      tags:
        - forms
      summary: Get Forms
      description: Retrieve all forms associated with the authenticated user.
      operationId: get_forms_v1_forms_get
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: Page number
            default: 1
            title: Page
          description: Page number
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Number of forms per page
            default: 10
            title: Page Size
          description: Number of forms per page
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MultipleFormResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    MultipleFormResponse:
      properties:
        total_pages:
          type: integer
          title: Total Pages
        forms:
          items:
            $ref: '#/components/schemas/FormBaseResponse'
          type: array
          title: Forms
      type: object
      required:
        - total_pages
        - forms
      title: MultipleFormResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FormBaseResponse:
      properties:
        form_id:
          type: string
          title: Form Id
        form_description:
          anyOf:
            - type: string
            - type: 'null'
          title: Form Description
        form_title:
          anyOf:
            - type: string
            - type: 'null'
          title: Form Title
        form_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Form Name
        original_form_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Original Form Name
        form_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Form Url
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        last_filled_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Filled At
        file_size:
          anyOf:
            - type: number
            - type: 'null'
          title: File Size
        fillable_field_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Fillable Field Count
      type: object
      required:
        - form_id
      title: FormBaseResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````