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

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