Pular para o conteúdo principal
GET
/
team
/
token-usage
/
historical
Obtenha o histórico de uso de tokens da equipe autenticada (somente 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
    }
  ]
}
Retorna o uso histórico de tokens mês a mês. Opcionalmente, o endpoint também pode detalhar o uso por chave de API.

Autorizações

Authorization
string
header
obrigatório

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

Parâmetros de consulta

byApiKey
boolean
padrão:false

Obter uso histórico de tokens por chave de API

Resposta

Resposta bem-sucedida

success
boolean
Exemplo:

true

periods
object[]