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

> Find developer metadata matching one or more DataFilters. A filter that is a developer_metadata_lookup selects entries by key, value, visibility or location type; a filter that names a range returns the metadata associated with locations intersecting it.

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

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

result = await gsheets.spreadsheets_developer_metadata_search.ainvoke({"spreadsheetId": ...})
```

<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. |
</div>

## Body

<div className="reference-table">
  | Field         | Type                                                              | Description                                                                                                                                                                                 |
  | ------------- | ----------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `dataFilters` | [DataFilter](/charter/charter/packs/gsheets/values/objects#datafilter)\[] | The data filters describing the criteria used to determine which DeveloperMetadata entries to return. DeveloperMetadata matching any of the specified filters are included in the response. |
</div>
