TRUECALC
RESTReference

Read a single cell

A per-call agent read, answered from an in-memory cache of the workbook when resident. No request headers are read by this route — same `security: []` note as GET /workbooks/{id}.

GET/workbooks/{id}/cells/{a1}

Path Parameters

id*string
a1*string

An A1-style single-cell reference (column letters + a 1-based row), e.g. "B3".

Response Body

application/json

application/json

curl -X GET "https://example.com/workbooks/string/cells/string"
{
  "sheet": "string",
  "a1": "string",
  "value": {
    "property1": null,
    "property2": null
  },
  "display": "string",
  "formula": "string",
  "format": {
    "property1": null,
    "property2": null
  }
}
{
  "error": "not_found",
  "message": "string"
}