跳转到主要内容
GET
/
team
/
queue-status
团队抓取队列指标
curl --request GET \
  --url https://api.firecrawl.dev/v2/team/queue-status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "jobsInQueue": 123,
  "activeJobsInQueue": 123,
  "waitingJobsInQueue": 123,
  "maxConcurrency": 123,
  "mostRecentSuccess": "2023-11-07T05:31:56Z"
}
你团队抓取队列的指标。

授权

Authorization
string
header
必填

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

响应

200 - application/json

成功的响应

success
boolean
示例:

true

jobsInQueue
number

当前队列中的任务数量

activeJobsInQueue
number

当前正在运行的任务数量

waitingJobsInQueue
number

当前等待中的任务数

maxConcurrency
number

根据您的套餐所允许的最大并发运行任务数

mostRecentSuccess
string<date-time> | null

最近一次成功作业的时间戳