跳转到主要内容
GET
/
base
/
{baseId}
/
table
/
{tableId}
Get table details
curl --request GET \
  --url http://127.0.0.1:3000/api/base/{baseId}/table/{tableId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "dbTableName": "<string>",
  "description": "<string>",
  "icon": "<string>",
  "order": 123,
  "lastModifiedTime": "<string>",
  "defaultViewId": "<string>"
}

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

路径参数

baseId
string
必填
tableId
string
必填

响应

200 - application/json

Returns data about a table.

id
string
必填

The id of table.

name
string
必填

The name of the table.

dbTableName
string
必填

Table name in backend database. Limitation: 1-63 characters, start with letter, can only contain letters, numbers and underscore, case insensitive, cannot be duplicated with existing db table name in the base.

description
string

The description of the table.

icon
string<emoji>

The emoji icon string of the table.

order
number
lastModifiedTime
string

The last modified time of the table.

defaultViewId
string

The default view id of the table.

Last modified on December 10, 2025