sheets_get_values
Retrieve data from a specific range in Google Sheets using A1 notation. Specify the spreadsheet ID and range to fetch values for streamlined data access.
Instructions
Get values from a Google Sheet range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
range | Yes | A1 notation range | |
spreadsheet_id | Yes | ID of the spreadsheet |
Input Schema (JSON Schema)
{
"properties": {
"range": {
"description": "A1 notation range",
"type": "string"
},
"spreadsheet_id": {
"description": "ID of the spreadsheet",
"type": "string"
}
},
"required": [
"spreadsheet_id",
"range"
],
"type": "object"
}