GET
/
team
/
token-usage
Get remaining tokens for the authenticated team (Extract only)
curl --request GET \
  --url https://api.firecrawl.dev/v2/team/token-usage \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "remainingTokens": 1000,
    "planTokens": 500000,
    "billingPeriodStart": "2025-01-01T00:00:00Z",
    "billingPeriodEnd": "2025-01-31T23:59:59Z"
  }
}

v2 有哪些新内容

了解你的 Token 用到了哪里

  • 跟踪 FIRE-1(代理)的 token 使用
  • 查看无 URL 抽取的费用
  • 监控复杂数据抽取的 token 消耗
  • 更好地跟踪批量抽取

更多 Token 详情

  • 查看用于复杂网页交互的 token
  • 追踪 JavaScript 重度站点的额外 token
  • 监控 token 以提升准确性
  • 查看自动分页的费用

更快、更准确

  • 更快获取令牌使用数据
  • 更清晰地拆解 Extract 功能成本
  • 更精确地跟踪 FIRE-1 操作
API 与 v1 保持一致,v2 的 Extract 功能对令牌使用情况提供更高可观测性。

Authorizations

Authorization
string
header
required

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

Response

Successful response

success
boolean
Example:

true

data
object