GET
/
team
/
credit-usage
/
historical
Get historical credit usage for the authenticated team
curl --request GET \
  --url https://api.firecrawl.dev/v1/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
    }
  ]
}
Renvoie l’historique de l’utilisation des crédits, mois par mois. Le point de terminaison peut également, en option, ventiler l’utilisation par clé d’API.

Authorizations

Authorization
string
header
required

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

Query Parameters

byApiKey
boolean
default:false

Get historical credit usage by API key

Response

Successful response

success
boolean
Example:

true

periods
object[]