メインコンテンツへスキップ
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"
  }
}
注: 機能とパフォーマンスが向上した 本 API の新しい v2 版 が利用可能です。

承認

Authorization
string
header
必須

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

レスポンス

成功時のレスポンス

success
boolean
:

true

data
object