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

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

提取作业的 ID

Response

200 - application/json

成功响应

success
boolean
data
object
status
enum<string>

当前提取任务的状态

可用选项:
completed,
processing,
failed,
cancelled
expiresAt
string<date-time>
tokensUsed
integer

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