跳转到主要内容
GET
/
billing
/
subscription
/
summary
cURL
curl --request GET \
  --url http://127.0.0.1:3000/api/billing/subscription/summary \
  --header 'Authorization: Bearer <token>'
[
  {
    "spaceId": "<string>",
    "status": "active",
    "level": "free"
  }
]

授权

Authorization
string
header
必填

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

响应

200 - application/json

Returns a summary of subscription information for each space.

spaceId
string
必填
status
enum<string>
必填
可用选项:
active,
canceled,
incomplete,
incomplete_expired,
trialing,
past_due,
unpaid,
paused,
seat_limit_exceeded
level
enum<string>
必填
可用选项:
free,
plus,
pro,
enterprise
Last modified on December 10, 2025