GET
gsheets_spreadsheets_values_batch_get.py
Requires
https://www.googleapis.com/auth/spreadsheets. Costs 1 against the provider’s own quota.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns one or more ranges of values from a spreadsheet.
from charter.packs import gsheets
result = await gsheets.spreadsheets_values_batch_get.ainvoke({"spreadsheetId": ..., "ranges": ...})
https://www.googleapis.com/auth/spreadsheets. Costs 1 against the provider’s own quota.| Field | Type | Description |
|---|---|---|
spreadsheetId * | string | The ID of the spreadsheet to retrieve data from. |
| Field | Type | Description |
|---|---|---|
ranges * | string[] | The A1 notation or R1C1 notation of the range to retrieve values from. min 1 items |
majorDimension | Dimension | The major dimension that results should use. For example, if the spreadsheet data is: A1=1,B1=2,A2=3,B2=4, then requesting ranges=[“A1:B2”],majorDimension=ROWS returns [[1,2],[3,4]], whereas requesting ranges=[“A1:B2”],majorDimension=COLUMNS returns [[1,3],[2,4]]. |
valueRenderOption | ValueRenderOption | How values should be represented in the output. The default render option is FORMATTED_VALUE. |
dateTimeRenderOption | DateTimeRenderOption | How dates, times, and durations should be represented in the output. This is ignored if valueRenderOption is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER. |
Was this page helpful?