跳转到主要内容
GET
/
team
/
queue-status
Metrics about your team's scrape queue
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 版本,功能与性能均有所提升。

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful response

success
boolean
Example:

true

jobsInQueue
number

Number of jobs currently in your queue

activeJobsInQueue
number

Number of jobs currently active

waitingJobsInQueue
number

Number of jobs currently waiting

maxConcurrency
number

Maximum number of concurrent active jobs based on your plan

mostRecentSuccess
string<date-time> | null

Timestamp of the most recent successful job