跳转到主要内容
GET
/
team
/
credit-usage
获取当前团队的剩余额度
curl --request GET \
  --url https://api.firecrawl.dev/v1/team/credit-usage \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "remaining_credits": 1000,
    "plan_credits": 500000,
    "billing_period_start": "2025-01-01T00:00:00Z",
    "billing_period_end": "2025-01-31T23:59:59Z"
  }
}
注意:新版 v2 版本 API 现已推出,具备更强大的功能和更优的性能。

授权

Authorization
string
header
必填

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

响应

成功的响应

success
boolean
示例:

true

data
object