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

最新の成功したジョブのタイムスタンプ