> ## 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 many user's availability at once



## OpenAPI

````yaml /openapi.json get /availability/many
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:
  /availability/many:
    get:
      tags:
        - availability
      summary: Get many user's availability at once
      operationId: getManyAvailabilities
      parameters:
        - name: userIds
          required: false
          in: query
          schema:
            type: array
            items:
              type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AvailabilityPerUserDto'
      security:
        - ApiUserHeader: []
        - JWT: []
        - ApiKey: []
components:
  schemas:
    AvailabilityPerUserDto:
      type: object
      properties:
        userId:
          type: string
        items:
          type: array
          items:
            $ref: '#/components/schemas/AvailabilityDto'
      required:
        - userId
        - items
    AvailabilityDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        schedule:
          $ref: '#/components/schemas/WeeklySchedule'
        timezone:
          type: string
        availabilityExceptions:
          type: array
          items:
            $ref: '#/components/schemas/AvailabilityExceptionDto'
        isDefault:
          type: boolean
        createdAt:
          type: string
        deletedAt:
          type: string
        useExplicitAvailability:
          type: boolean
          description: >-
            When enabled, only calendar events with the specified title will be
            used as available slots.
        explicitAvailabilityEventTitle:
          type: string
          nullable: true
          description: >-
            The calendar event title to look for when useExplicitAvailability is
            enabled.
      required:
        - id
        - name
        - schedule
        - timezone
        - availabilityExceptions
        - isDefault
        - createdAt
    WeeklySchedule:
      type: object
      properties:
        monday:
          $ref: '#/components/schemas/DaySchedule'
        tuesday:
          $ref: '#/components/schemas/DaySchedule'
        wednesday:
          $ref: '#/components/schemas/DaySchedule'
        thursday:
          $ref: '#/components/schemas/DaySchedule'
        friday:
          $ref: '#/components/schemas/DaySchedule'
        saturday:
          $ref: '#/components/schemas/DaySchedule'
        sunday:
          $ref: '#/components/schemas/DaySchedule'
      required:
        - monday
        - tuesday
        - wednesday
        - thursday
        - friday
        - saturday
        - sunday
    AvailabilityExceptionDto:
      type: object
      properties:
        ownerId:
          type: string
        ownerType:
          allOf:
            - $ref: '#/components/schemas/AvailabilityExceptionOwner'
        available:
          type: boolean
        start:
          type: string
        end:
          type: string
        title:
          type: string
        note:
          type: string
        createdAt:
          type: string
        deletedAt:
          type: string
          nullable: true
        id:
          type: number
      required:
        - ownerId
        - ownerType
        - available
        - start
        - end
        - createdAt
        - id
    DaySchedule:
      type: object
      properties:
        enabled:
          type: boolean
        hours:
          type: array
          items:
            $ref: '#/components/schemas/HoursSchedule'
      required:
        - enabled
        - hours
    AvailabilityExceptionOwner:
      type: string
      enum:
        - company
        - user
    HoursSchedule:
      type: object
      properties:
        start:
          type: string
        end:
          type: string
      required:
        - start
        - end
  securitySchemes:
    ApiUserHeader:
      type: apiKey
      in: header
      name: x-meetergo-api-user-id
      description: >-
        User ID to act on behalf of. Platform API Keys only (required with an
        API Key unless the endpoint states otherwise). Requests authenticated
        with a Personal Access Token are rejected if this header names another
        user.
    JWT:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: JWT Bearer token for standard user authentication
    ApiKey:
      scheme: bearer
      bearerFormat: API Key
      type: http
      description: >-
        Bearer token: a Platform API Key (format: ak_live:<uuid>:<secret>) or a
        Personal Access Token (format: rgo-...). PATs always act as the token
        owner.

````