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

# GET /calendar/available_hours



## OpenAPI

````yaml /openapi/nimbo_api.yml get /calendar/available_hours
openapi: 3.0.0
info:
  title: Nimbo API
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; confirm your integration host with Nimbo
security: []
paths:
  /calendar/available_hours:
    get:
      tags:
        - Consultation Schedules
      summary: GET /calendar/available_hours
      operationId: legacy_nimbo_api_get__calendar_available_hours
      parameters:
        - name: from
          in: query
          schema:
            type: string
        - name: to
          in: query
          schema:
            type: string
        - name: monthly
          in: query
          schema:
            type: boolean
        - name: account
          in: query
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  hours:
                    type: array
                    items:
                      type: object
                      properties:
                        date:
                          type: string
                          format: date
                        day:
                          type: string
                        available:
                          type: boolean
          description: Successful response

````