Skip to main content
POST
/
table
/
get-cells
Retrieve multiple cells
curl --request POST \
  --url https://app.myhero.so/table/get-cells \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": [
    "<string>"
  ]
}
'
{
  "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.

Accepts an array of cell IDs and returns the subset the caller can access. Cells the caller cannot access are silently omitted.

Authorizations

Authorization
string
header
required

HERO personal access token

Body

application/json
data
string[]
required
Minimum array length: 1
Minimum string length: 1

Response

200 response

data
object[]
required