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

# calendars_get

> Get a calendar's own metadata, including the time zone its events are read against. Use this before writing a naive dateTime rather than assuming a zone.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://www.googleapis.com/calendar/v3/calendars/{calendarId}"}</code></div>

```python gcalendar_calendars_get.py theme={null}
from charter.packs import gcalendar

result = await gcalendar.calendars_get.ainvoke({"calendarId": ...})
```

<Note>
  Requires `https://www.googleapis.com/auth/calendar.readonly`. Costs 1 against the provider's own quota.
</Note>

## Path parameters

<div className="reference-table">
  | Field                                                              | Type     | Description                                                                                                                                                                             |
  | ------------------------------------------------------------------ | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `calendarId` <span className="required" title="required">\*</span> | `string` | Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. |
</div>
