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

# Get user availability for a specific timeframe



## OpenAPI

````yaml /openapi.json get /v4/booking-availability/user/{id}/timeframe
openapi: 3.0.0
info:
  title: meetergo Platform API
  description: >-
    Comprehensive scheduling API for creating users, managing availability,
    handling bookings, and connecting calendar providers. Enables seamless
    integration with external platforms and applications.
  version: 0.0.0
  contact: {}
  termsOfService: https://www.meetergo.com/tos/
servers: []
security: []
tags:
  - name: User V4
    description: Create and manage users in your workspace
  - name: Meeting Type V4
    description: Configure meeting templates with durations, buffers, and conferencing
  - name: availability
    description: Manage weekly schedules and availability settings
  - name: Booking V4
    description: Create new bookings
  - name: Booking Availability V4
    description: Query available time slots for booking
  - name: Appointment V4
    description: Manage existing appointments
  - name: Attendee V4
    description: Manage attendee details and notes
  - name: Calendar Connections V4
    description: Connect and sync external calendars
  - name: One Time Booking Link V4
    description: Create single-use booking links
  - name: availability-exception
    description: Override availability for specific dates
  - name: Booking Link V4
    description: Configure various booking page types
  - name: Personal Page V4
    description: Manage user profile pages
  - name: Handoff V4
    description: Reassign meetings to other hosts
  - name: Calendar Auth V4
    description: OAuth callbacks for calendar providers
  - name: Queue V4
    description: Round-robin and queue-based routing (Beta)
  - name: Queue User Group V4
    description: Manage queue user groups (Beta)
  - name: Meeting Type Template V4
    description: Reusable meeting type configurations (Beta)
  - name: Attendee Pending V4
    description: Manage pending attendee approvals (Beta)
  - name: Provisional Booking V4
    description: Manage provisional/unconfirmed bookings (Beta)
paths:
  /v4/booking-availability/user/{id}/timeframe:
    get:
      tags:
        - Booking Availability V4
      summary: Get user availability for a specific timeframe
      operationId: getUserAvailability
      parameters:
        - name: id
          required: true
          in: path
          description: User ID
          schema:
            type: string
        - name: start
          required: true
          in: query
          description: Start date and time in ISO format
          schema:
            type: string
        - name: end
          required: true
          in: query
          description: End date and time in ISO format
          schema:
            type: string
        - name: meetingTypeId
          required: false
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserAvailabilityResponseDto'
        default:
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserAvailabilityResponseDto'
components:
  schemas:
    UserAvailabilityResponseDto:
      type: object
      properties:
        hostId:
          type: string
        available:
          type: array
          items:
            $ref: '#/components/schemas/Timeframe'
        unavailable:
          type: array
          items:
            $ref: '#/components/schemas/Timeframe'
      required:
        - hostId
        - available
        - unavailable
    Timeframe:
      type: object
      properties:
        start:
          type: string
        end:
          type: string
        unavailabilityEvent:
          $ref: '#/components/schemas/UnavailabilityEvent'
      required:
        - start
        - end
    UnavailabilityEvent:
      type: object
      properties:
        hostId:
          type: string
        hostName:
          type: string
        picture:
          type: string
        type:
          allOf:
            - $ref: '#/components/schemas/UnavailabilityType'
      required:
        - hostId
        - hostName
        - type
    UnavailabilityType:
      type: string
      enum:
        - event
        - exception
        - googleEvent
        - outlookEvent
        - exchangeEvent
        - exchangeTeamsEvent
        - icloudEvent
        - caldavEvent
        - smartWeEvent
        - icsEvent
        - salesforceEvent
        - bufferBefore
        - bufferAfter
        - bookingBeforeLimit
        - bookingAfterLimit
        - perDayBookingLimit
        - perWeekBookingLimit
        - perMonthBookingLimit
        - perYearBookingLimit
        - outsideHours
        - clusterMeetingNotAdjacent

````