メインコンテンツへスキップ
GET
/
team
/
credit-usage
/
historical
認証済みチームのクレジット利用履歴を取得します
curl --request GET \
  --url https://api.firecrawl.dev/v2/team/credit-usage/historical \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "periods": [
    {
      "startDate": "2025-01-01T00:00:00Z",
      "endDate": "2025-01-31T23:59:59Z",
      "apiKey": "<string>",
      "totalCredits": 1000
    }
  ]
}
月ごとのクレジット使用状況を返します。必要に応じて、APIキーごとの内訳も取得できます。

承認

Authorization
string
header
必須

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

クエリパラメータ

byApiKey
boolean
デフォルト:false

APIキーごとのクレジット使用履歴を取得

レスポンス

成功時のレスポンス

success
boolean
:

true

periods
object[]