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

# Get a calendar event

> Retrieve an existing calendar event.

Retrieve a single [Calendar event](/reference/calendar-events/object) by its ID.

### Parameters

<ParamField path="id" type="string" initialValue="cale_K2mP9qR4xL7s" required>
  The ID of the calendar event to retrieve.
</ParamField>

### Returns

Returns the [Calendar event](/reference/calendar-events/object) object if a valid ID was provided.
Otherwise, returns an error.

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "cale_K2mP9qR4xL7s",
    "object": "calendar.event",
    "calendar": "cal_cNqYX2J3s9bI2Aa",
    "title": "All Hands Meeting",
    "description": "Monthly company-wide meeting",
    "starts": "2026-04-14T10:00:00Z",
    "ends": "2026-04-14T11:00:00Z",
    "all_day": false,
    "subject": "ent_airfoil",
    "metadata": {},
    "created": "2026-03-10T18:42:11Z",
    "updated": "2026-03-11T09:05:52Z"
  }
  ```
</ResponseExample>
