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

> Read one submitted response by ID. Answers come back keyed by questionId, which forms_get is where you look up.

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

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

result = await gforms.forms_responses_get.ainvoke({"formId": ..., "responseId": ...})
```

<Note>
  Requires `https://www.googleapis.com/auth/forms.responses.readonly`. 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.                     |
  | `responseId` <span className="required" title="required">\*</span> | `string` | Required. The response ID within the form. |
</div>
