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

# Get Banking Calendar

> Bank holidays between `from_date` and `to_date` (inclusive; defaults to
today and one year on, at most 400 days per call), plus which weekdays are
never banking days. This is the calendar every delivery estimate counts by:
a payment on a `business` basis goes out and lands on banking days only.

Dates are US Eastern calendar days. A holiday that falls on a Sunday is
observed on the Monday after (and listed as such); one on a Saturday closes
nothing, so it is not listed.



## OpenAPI

````yaml GET /v1/platform/payments/banking-calendar
openapi: 3.1.0
info:
  title: Finogate Platform API v1
  version: 0.1.0
servers:
  - url: https://api-sandbox.finogates.com
    description: Sandbox
  - url: https://api.finogates.com
    description: Production
security: []
tags:
  - name: auth
  - name: users
  - name: payees
  - name: verification
  - name: bank accounts
  - name: card processing
  - name: digital-assets
  - name: international
  - name: fees
  - name: onboarding
  - name: Redirect URLs
  - name: pending-applications
  - name: wallets
  - name: payments
  - name: document mailing
  - name: merchant onboarding
  - name: catalog
  - name: webhooks
  - name: screening
  - name: Platform - File Scanning
  - name: phone-numbers
  - name: sms
  - name: calls
  - name: listings
  - name: Card Transfers
  - name: Accounting
  - name: embed-tokens
paths:
  /v1/platform/payments/banking-calendar:
    get:
      tags:
        - payments
      summary: The days no banking happens
      description: >-
        Bank holidays between `from_date` and `to_date` (inclusive; defaults to

        today and one year on, at most 400 days per call), plus which weekdays
        are

        never banking days. This is the calendar every delivery estimate counts
        by:

        a payment on a `business` basis goes out and lands on banking days only.


        Dates are US Eastern calendar days. A holiday that falls on a Sunday is

        observed on the Monday after (and listed as such); one on a Saturday
        closes

        nothing, so it is not listed.
      operationId: read_banking_calendar_v1_platform_payments_banking_calendar_get
      parameters:
        - name: from_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            description: First day to cover. Defaults to today.
            title: From Date
          description: First day to cover. Defaults to today.
        - name: to_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            description: Last day to cover. Defaults to a year after `from_date`.
            title: To Date
          description: Last day to cover. Defaults to a year after `from_date`.
      responses:
        '200':
          description: Banking calendar
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonResponse'
              example:
                status_code: 200
                data:
                  timezone: America/New_York
                  from_date: '2026-09-18'
                  to_date: '2026-12-31'
                  today: '2026-09-18'
                  is_banking_day: true
                  next_banking_day: '2026-09-21'
                  weekend_days:
                    - saturday
                    - sunday
                  holidays:
                    - date: '2026-10-12'
                      name: Columbus Day
                    - date: '2026-11-11'
                      name: Veterans Day
                    - date: '2026-11-26'
                      name: Thanksgiving Day
                    - date: '2026-12-25'
                      name: Christmas Day
                query_generated_time: 1712847600000
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '503':
          description: payment_request_unavailable
          content:
            application/json:
              examples:
                payment_request_unavailable:
                  summary: payment_request_unavailable (error_code 1107)
                  value:
                    status_code: 503
                    data:
                      detail: >-
                        A payment request cannot be prepared for this movement
                        at the moment. Please try again later or contact
                        support.
                      code: payment_request_unavailable
                      error_code: 1107
                    query_generated_time: 1750000000000
              schema:
                $ref: '#/components/schemas/CodedErrorResponse'
      security:
        - _AuthenticatedBearer: []
components:
  schemas:
    CommonResponse:
      properties:
        status_code:
          type: integer
          title: Status Code
          description: HTTP status code for the response.
        data:
          title: Data
          description: Payload or error details.
        query_generated_time:
          type: integer
          title: Query Generated Time
          description: >-
            UTC timestamp (milliseconds since epoch) when response was
            generated.
      type: object
      required:
        - status_code
        - data
        - query_generated_time
      title: CommonResponse
      description: |-
        Standard response wrapper for single-object responses and errors.

        Generic over the payload type. A route that declares
        ``CommonResponse[SomeModel]`` gets the real ``data`` schema rendered in
        OpenAPI/Swagger; a bare ``CommonResponse`` leaves ``data`` untyped.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CodedErrorResponse:
      properties:
        status_code:
          type: integer
          title: Status Code
          description: HTTP status code for the response.
        data:
          $ref: '#/components/schemas/CodedErrorBody'
          description: Payload or error details.
        query_generated_time:
          type: integer
          title: Query Generated Time
          description: >-
            UTC timestamp (milliseconds since epoch) when response was
            generated.
      type: object
      required:
        - status_code
        - data
        - query_generated_time
      title: CodedErrorResponse
      description: Standard envelope wrapping a :class:`CodedErrorBody`.
    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
    CodedErrorBody:
      properties:
        detail:
          type: string
          title: Detail
          description: Human-readable error message.
        code:
          type: string
          title: Code
          description: Stable string error code — the canonical value to branch on.
        error_code:
          type: integer
          title: Error Code
          description: >-
            Numeric custom error code from the Finogate registry. Unique per
            condition and stable forever.
      type: object
      required:
        - detail
        - code
        - error_code
      title: CodedErrorBody
      description: >-
        The ``data`` payload of a coded-error response.


        Condition-specific extras (e.g. ``remaining_time``) may also appear;
        only

        the always-present fields are typed here.
  securitySchemes:
    _AuthenticatedBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /v1/platform/auth/token

````