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

# spreadsheets_developer_metadata_get

> Get one developer metadata entry by its spreadsheet-scoped ID. Developer metadata is arbitrary data pinned to a row, column, sheet or the spreadsheet itself, which follows that location as the sheet is edited.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/developerMetadata/{metadataId}"}</code></div>

```python gsheets_spreadsheets_developer_metadata_get.py theme={null}
from charter.packs import gsheets

result = await gsheets.spreadsheets_developer_metadata_get.ainvoke({"spreadsheetId": ..., "metadataId": ...})
```

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

## Path parameters

<div className="reference-table">
  | Field                                                                 | Type      | Description                                          |
  | --------------------------------------------------------------------- | --------- | ---------------------------------------------------- |
  | `spreadsheetId` <span className="required" title="required">\*</span> | `string`  | The ID of the spreadsheet to retrieve metadata from. |
  | `metadataId` <span className="required" title="required">\*</span>    | `integer` | The ID of the developer metadata to retrieve.        |
</div>
