Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/firecrawl/firecrawl/llms.txt

Use this file to discover all available pages before exploring further.

Endpoint

GET /v1/team/token-usage

Authentication

This endpoint requires authentication using a Bearer token. Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY

Response

success
boolean
Indicates whether the request was successful
data
object
Token usage information

Examples

curl -X GET https://api.firecrawl.dev/v1/team/token-usage \
  -H 'Authorization: Bearer YOUR_API_KEY'

Response Example

{
  "success": true,
  "data": {
    "remaining_tokens": 1000
  }
}

Error Responses

404
object
Not Found - Could not find token usage information.
{
  "success": false,
  "error": "Could not find token usage information"
}
500
object
Server Error - Internal server error while fetching token usage.
{
  "success": false,
  "error": "Internal server error while fetching token usage"
}