跳转到主要内容
GET
/
space
/
{spaceId}
/
billing
/
credit-detail
cURL
curl --request GET \
  --url 'https://app.teable.ai/api/space/%7BspaceId%7D/billing/credit-detail?month=SOME_STRING_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
  {
    "date": "<string>",
    "automation_ai_action": 123,
    "ai_generation": 123,
    "field_ai_generation": 123,
    "ai_chat": 123,
    "app_generation": 123
  }
]

授权

Authorization
string
header
必填

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

路径参数

spaceId
string
必填

查询参数

month
string
必填
Pattern: ^\d{4}-\d{2}$

响应

200 - application/json

Returns space credit usage detail.

date
string
必填
automation_ai_action
number
必填
ai_generation
number
必填
field_ai_generation
number
必填
ai_chat
number
必填
app_generation
number
必填
Last modified on March 5, 2026