GET
/
admin
/
space
curl --request GET \
  --url https://app.teable.cn/api/admin/space \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
  {
    "id": "<string>",
    "name": "<string>",
    "createdTime": "<string>",
    "autoJoin": true,
    "baseCount": 123,
    "collaboratorCount": 123
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
Returns all spaces information.
id
string
required
name
string
required
createdTime
string
required
autoJoin
boolean | null
required
baseCount
number
required
collaboratorCount
number
required