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

# about_get

> Get information about the user, the user's Drive, and system capabilities. The `fields` parameter is required — for example `user,storageQuota`.

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

```python gdrive_about_get.py theme={null}
from charter.packs import gdrive

result = await gdrive.about_get.ainvoke({"fields": ...})
```

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

## Query parameters

<div className="reference-table">
  | Field                                                          | Type     | Description                                                                                                                                  |
  | -------------------------------------------------------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
  | `fields` <span className="required" title="required">\*</span> | `string` | Required. The `fields` parameter must be set. To return the exact fields you need, see Return specific fields. Example: `user,storageQuota`. |
</div>
