メインコンテンツへスキップ
GET
/
team
/
token-usage
/
historical
認証済みのチームのトークン使用履歴を取得(Extractのみ)
curl --request GET \
  --url https://api.firecrawl.dev/v1/team/token-usage/historical \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "periods": [
    {
      "startDate": "2025-01-01T00:00:00Z",
      "endDate": "2025-01-31T23:59:59Z",
      "apiKey": "<string>",
      "totalTokens": 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[]