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

# Get Cal.com Events

## Overview

The "Get Cal.com Events" endpoint allows users to retrieve information about events from their Cal.com integration in Toingg. By sending a POST request to the `/get_cal_com_events` endpoint, users can access details such as event times, participants, and other relevant scheduling information. This functionality is crucial for reviewing and managing Cal.com events, ensuring that scheduling is efficient and aligned with user needs. The endpoint provides comprehensive event information to support effective calendar management and integration with external systems.

#### Example cURL Request

```bash theme={null}
curl -X GET \
  'https://api.toingg.com/api/v3/meetings/get_cal_com_events?apiKey=YOUR_API_KEY' \
 -H 'accept: application/json' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```


## OpenAPI

````yaml GET /get_cal_com_events
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /get_cal_com_events:
    get:
      tags:
        - Meeting handling
      summary: Get Cal Com Events
      operationId: get_cal_com_events_get_cal_com_events_get
      parameters:
        - name: apiKey
          in: query
          required: true
          schema:
            type: string
            title: Apikey
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````