Saltar al contenido principal
GET
/
team
/
token-usage
/
historical
Get historical token usage for the authenticated team (Extract only)
curl --request GET \
  --url https://api.firecrawl.dev/v2/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
    }
  ]
}
Devuelve el uso histórico de tokens por mes. Este endpoint también puede desglosar el uso por clave de API de forma opcional.
Hemos simplificado la facturación para que Extract ahora use créditos, igual que los demás endpoints. Cada crédito equivale a 15 tokens. El uso de tokens informado ahora incluye el uso de todos los endpoints.

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 token usage by API key

Response

Successful response

success
boolean
Example:

true

periods
object[]