跳转到主要内容
GET
/
team
/
queue-status
团队抓取队列指标
curl --request GET \
  --url https://api.firecrawl.dev/v1/team/queue-status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "jobsInQueue": 123,
  "activeJobsInQueue": 123,
  "waitingJobsInQueue": 123,
  "maxConcurrency": 123,
  "mostRecentSuccess": "2023-11-07T05:31:56Z"
}
注意:此 API 的新 v2 版本 现已推出,提供更完善的功能和更佳的性能。

授权

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

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