Quick Start
API List
- record
- space
- base
- view
- admin
- trash
- field
- dashboard
- aggregation
- table
- selection
- plan
- attachments
- user
- auth
- db-connection
- invitation
- share
- notification
- access-token
- import
- export
- pin
- billing
- usage
- oauth
- plugin
- comment
- organization
- ai
- integrity
- plugin-panel
- plugin-context-menu
usage
Get instanceusage
usage
Get instanceusage
Get usage information for the instance
GET
/
instance
/
usage
curl --request GET \
--url https://app.teable.cn/api/instance/usage \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"level": "free",
"limit": {
"maxRows": 123,
"maxSizeAttachments": 123,
"maxNumDatabaseConnections": 123,
"maxRevisionHistoryDays": 123,
"maxAutomationHistoryDays": 123,
"automationEnable": true,
"auditLogEnable": true,
"adminPanelEnable": true,
"rowColoringEnable": true,
"buttonFieldEnable": true,
"userGroupEnable": true,
"advancedExtensionsEnable": true,
"advancedPermissionsEnable": true,
"passwordRestrictedSharesEnable": true,
"authenticationEnable": true,
"domainVerificationEnable": true,
"organizationEnable": true,
"apiRateLimit": 123
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Returns usage information for the instance.
Available options:
free
, plus
, pro
, enterprise
curl --request GET \
--url https://app.teable.cn/api/instance/usage \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"level": "free",
"limit": {
"maxRows": 123,
"maxSizeAttachments": 123,
"maxNumDatabaseConnections": 123,
"maxRevisionHistoryDays": 123,
"maxAutomationHistoryDays": 123,
"automationEnable": true,
"auditLogEnable": true,
"adminPanelEnable": true,
"rowColoringEnable": true,
"buttonFieldEnable": true,
"userGroupEnable": true,
"advancedExtensionsEnable": true,
"advancedPermissionsEnable": true,
"passwordRestrictedSharesEnable": true,
"authenticationEnable": true,
"domainVerificationEnable": true,
"organizationEnable": true,
"apiRateLimit": 123
}
}