メインコンテンツへスキップ
GET
/
extract
/
{id}
抽出ジョブの状態を取得する
curl --request GET \
  --url https://api.firecrawl.dev/v2/extract/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {},
  "status": "completed",
  "expiresAt": "2023-11-07T05:31:56Z",
  "tokensUsed": 123
}

承認

Authorization
string
header
必須

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

パスパラメータ

id
string<uuid>
必須

抽出ジョブのID

レスポンス

200 - application/json

成功時のレスポンス

success
boolean
data
object
status
enum<string>

抽出ジョブの現在の状態

利用可能なオプション:
completed,
processing,
failed,
cancelled
expiresAt
string<date-time>
tokensUsed
integer

抽出ジョブで使用されたトークン数。ジョブが完了している場合にのみ取得できます。