跳转到主要内容
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

提取任务使用的 token 数量。仅在任务完成后可查看。