Skip to main content
GET
/
table
/
cells
/
{tableId}
List cells in a table
curl --request GET \
  --url https://app.myhero.so/table/cells/{tableId} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "_id": "<string>",
      "tableId": "<string>",
      "rowId": "<string>",
      "columnId": "<string>",
      "workspaceId": "<string>",
      "isIdentifier": false,
      "createdAt": 123,
      "updatedAt": 123,
      "originId": "<string>",
      "data": "<unknown>",
      "isDeleted": false
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

Use this file to discover all available pages before exploring further.

Returns all cells for the given table that the caller can access. Like rows, cell visibility is filtered by workspace or document-level access.

Authorizations

Authorization
string
header
required

HERO personal access token

Path Parameters

tableId
string
required
Minimum string length: 1

Response

200 response

data
object[]
required