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

# Listing Event Types

> Retrieves all event types created by the user. The request returns a list of event details, including title, duration, availability settings, and booking options. If successful, the API responds with 200 OK and provides the full list of the user’s events.



## OpenAPI

````yaml api-reference/openapi.json get /events
openapi: 3.0.0
info:
  title: Calendbook OAUTH API
  version: 1.0.0
  description: ''
servers:
  - url: https://api.calendbook.com/
security: []
paths:
  /events:
    get:
      summary: Listing Event Types
      description: >-
        Retrieves all event types created by the user. The request returns a
        list of event details, including title, duration, availability settings,
        and booking options. If successful, the API responds with 200 OK and
        provides the full list of the user’s events.
      responses:
        '200':
          description: List of available event types
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    event_id:
                      type: string
                    title:
                      type: string
                    booking_type:
                      type: string
                    color:
                      type: string
                    description:
                      type: string
                    duration_minutes:
                      type: integer
                    enabled:
                      type: boolean
                    is_team:
                      type: boolean
                    location:
                      type: object
                      properties:
                        type:
                          type: string
                        value:
                          type: string
                    buffer_after_minutes:
                      type: integer
                    buffer_before_minutes:
                      type: integer
                    is_secret:
                      type: boolean
                    redirect_url:
                      type: string
                      nullable: true
                    url:
                      type: string
        '400':
          description: Bad Request
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````