Run calculations in a workbook and retrieve cell objects.
Use this endpoint if you need detailed cell objects that include raw values, value types, format strings, and cell positional offsets. If you only need cell values, try theDocumentation Index
Fetch the complete documentation index at: https://sdk.grid.is/llms.txt
Use this file to discover all available pages before exploring further.
values endpoint.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A1-style cell reference, cell range, or formula that references cells in a sheet. References can be relative, mixed, or absolute. References may include a sheet prefix.
{
"read": [
"A1",
"Sheet1!A1:B2",
"'Loan Calculator'!C32",
"$A$1",
"=10*10",
"=SUM(A:A)"
],
}Map of cell references to values. The values are written to cells in the spreadsheet before performing the read operation. You can write numbers, strings, and booleans. Values applied within a request are temporary and affect only that specific request. They are not permanently written to the original spreadsheet.
{
"apply": { "A1": 10, "A2": 2.718, "A3": "Total", "A4": true, "A5": null },
// ...
}{
"A1": 100,
"A2": 2.718,
"A3": "Total",
"A4": true
}Successful Response
Response type returned by the for /calc query endpoint.
{
"formatted": "€6,378.32",
"offset": [0, 0],
"type": "number",
"value": 6378.32
}