> ## 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.

# forms_get

> Read a form: its title and description, its settings, and every item in order with the item and question IDs. This is the first half of changing a question: read the item, edit it, and write it back with forms_batch_update's update_item, keeping the IDs.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://forms.googleapis.com/v1/forms/{formId}"}</code></div>

```python gforms_forms_get.py theme={null}
from charter.packs import gforms

result = await gforms.forms_get.ainvoke({"formId": ...})
```

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

## Path parameters

<div className="reference-table">
  | Field                                                          | Type     | Description                                                                                       |
  | -------------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------------------- |
  | `formId` <span className="required" title="required">\*</span> | `string` | Required. The form ID. This is the long string in the form's edit URL, between `/d/` and `/edit`. |
</div>
