メインコンテンツへスキップ
GET
/
agent
/
{jobId}
エージェントジョブのステータスを取得
curl --request GET \
  --url https://api.firecrawl.dev/v2/agent/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": "processing",
  "data": {},
  "error": "<string>",
  "expiresAt": "2023-11-07T05:31:56Z",
  "creditsUsed": 123
}

承認

Authorization
string
header
必須

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

パスパラメータ

jobId
string<uuid>
必須

エージェントジョブのID

レスポンス

200 - application/json

成功時のレスポンス

success
boolean
status
enum<string>
利用可能なオプション:
processing,
completed,
failed
data
object

抽出されたデータ(ステータスが completed の場合にのみ存在)

error
string

エラーメッセージ(status が failed の場合にのみ含まれます)

expiresAt
string<date-time>
creditsUsed
number