Skip to main content
GET
/
table
/
rows
/
{tableId}
List rows in a table
curl --request GET \
  --url https://app.myhero.so/table/rows/{tableId} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "_id": "<string>",
      "projectId": "<string>",
      "tableId": "<string>",
      "workspaceId": "<string>",
      "ownerId": "<string>",
      "createdAt": 123,
      "updatedAt": 123,
      "originId": "<string>",
      "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 rows the caller can access within the given table. Workspace members receive all rows; document collaborators receive only rows referenced in their accessible documents.

Authorizations

Authorization
string
header
required

HERO personal access token

Path Parameters

tableId
string
required
Minimum string length: 1

Response

200 response

data
object[]
required