Skip to main content
GET
/
table
/
{tableId}
Retrieve a table
curl --request GET \
  --url https://app.myhero.so/table/{tableId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "_id": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "rows": [
      "<string>"
    ],
    "columns": [
      "<string>"
    ],
    "isStatic": false,
    "ownerId": "<string>",
    "projectId": "<string>",
    "workspaceId": "<string>",
    "createdAt": 123,
    "updatedAt": 123,
    "originId": "<string>",
    "description": "<string>",
    "icon": {
      "name": "<string>",
      "color": "<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 a single table document. Returns 404 if the table does not exist or the caller lacks 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