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

# Get Next Available Check/Pay Date

> Retrieve the next feasible check or pay date for employee checks or contractor payments based on speed and disbursement method.



## OpenAPI

````yaml openapi/zeal-api.json get /preview/availableDate
openapi: 3.1.0
info:
  title: zeal-api
  version: '1.0'
servers:
  - url: https://api.zeal.com
security:
  - sec0: []
paths:
  /preview/availableDate:
    get:
      summary: Get Next Available Check/Pay Date
      operationId: get-preview-available-date
      parameters:
        - name: companyID
          in: query
          required: true
          schema:
            type: string
        - name: speed
          in: query
          description: The Zeal speed parameter
          required: true
          schema:
            type: string
        - name: disbursement_method
          in: query
          description: The Zeal disbursement method parameter
          required: true
          schema:
            type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    data:
                      date: '2024-08-13'
                    success: true
                    testMode: true
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      date:
                        type: string
                        example: '2024-08-13'
                  success:
                    type: boolean
                    example: true
                    default: true
                  testMode:
                    type: boolean
                    example: true
                    default: true
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: {}
              schema:
                type: object
                properties: {}
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer

````