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

# Get Availability Schedule

> Retrieve one Novacal availability schedule by ID, with its timezone, working days, and open hours.

## What this endpoint returns

One availability schedule, with the same fields as the [list endpoint](/api-reference/v1/availabilities/get).

## Access

You can only read schedules on your own account. Another account's schedule returns `403 access_denied`. An unknown ID returns `404 resource_not_found`.


## OpenAPI

````yaml GET /v1/availabilities/{id}
openapi: 3.1.0
info:
  title: Events API
  description: Public API for managing event types
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.novacal.io
security:
  - bearerAuth: []
paths:
  /v1/availabilities/{id}:
    get:
      description: Returns a single availability schedule by ID
      parameters:
        - name: id
          in: path
          description: ID of the availability schedule
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: Availability response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AvailabilityResponse'
components:
  schemas:
    AvailabilityResponse:
      type: object
      required:
        - success
        - data
      properties:
        success:
          description: Indicates whether the request was successful
          type: boolean
          example: true
        data:
          $ref: '#/components/schemas/Availability'
    Availability:
      type: object
      properties:
        id:
          description: The unique identifier of the availability schedule
          type: integer
          example: 7
        name:
          description: The name of the schedule
          type: string
          example: Working hours
        timezone:
          description: IANA timezone the hours are expressed in
          type: string
          example: Europe/Belgrade
        is_default:
          description: Whether new event types get this schedule
          type: boolean
          example: true
        working_days:
          description: The weekdays the schedule is open on
          type: array
          items:
            type: string
            enum:
              - monday
              - tuesday
              - wednesday
              - thursday
              - friday
              - saturday
              - sunday
          example:
            - monday
            - tuesday
        hours:
          description: >-
            Open hours per weekday, in the schedule timezone. A weekday that is
            absent is closed.
          type: object
          additionalProperties:
            type: array
            items:
              $ref: '#/components/schemas/AvailabilityHours'
          example:
            monday:
              - start: '09:00'
                end: '17:00'
            tuesday:
              - start: '09:00'
                end: '12:00'
              - start: '14:00'
                end: '17:00'
        created_at:
          description: The date and time the schedule was created
          type: string
          format: date-time
        updated_at:
          description: The date and time the schedule was last changed
          type: string
          format: date-time
    AvailabilityHours:
      type: object
      properties:
        start:
          description: Opening time in HH:MM, in the schedule timezone
          type: string
          example: '09:00'
        end:
          description: Closing time in HH:MM, in the schedule timezone
          type: string
          example: '17:00'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````