GET
/
base
/
{baseId}
/
table
curl --request GET \
  --url https://app.teable.cn/api/base/%7BbaseId%7D/table \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
  {
    "id": "<string>",
    "name": "<string>",
    "dbTableName": "<string>",
    "description": "<string>",
    "icon": "<string>",
    "order": 123,
    "lastModifiedTime": "<string>",
    "defaultViewId": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

baseId
string
required

Response

200 - application/json

Successfully retrieved the list of tables.

The list of tables.