跳转到主要内容
GET
/
extract
/
{id}
获取提取任务的状态
curl --request GET \
  --url https://api.firecrawl.dev/v1/extract/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {},
  "status": "completed",
  "expiresAt": "2023-11-07T05:31:56Z"
}
注意:此 API 的全新 v2 版本 现已推出,具备更强大的功能和更高的性能。

授权

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>