メインコンテンツへスキップ
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

最新の正常終了したジョブのタイムスタンプ