跳转到主要内容
GET
/
team
/
activity
列出最近的 API 活动
curl --request GET \
  --url https://api.firecrawl.dev/v2/team/activity \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "<string>",
      "endpoint": "scrape",
      "api_version": "v1",
      "created_at": "2023-11-07T05:31:56Z",
      "target": "<string>"
    }
  ],
  "cursor": "<string>",
  "has_more": true
}
列出你在过去 24 小时内的近期 API 活动。你可以用它查找任务 ID,然后通过对应的 GET 端点获取结果。
端点获取端点
scrapeGET /v2/scrape/{id}
crawlGET /v2/crawl/{id}
batch_scrapeGET /v2/batch/scrape/{id}
agentGET /v2/extract/{id}

授权

Authorization
string
header
必填

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

查询参数

endpoint
enum<string>

按端点筛选

可用选项:
scrape,
crawl,
batch_scrape,
search,
extract,
llmstxt,
deep_research,
map,
agent,
browser,
interact
limit
integer
默认值:50

每页返回的最大结果数

必填范围: 1 <= x <= 100
cursor
string

用于分页的游标。请使用上一个响应中的游标值。

响应

200 - application/json

成功的响应

success
boolean
示例:

true

data
object[]
cursor
string | null

用于下一页的游标。如果没有更多结果,则为 null。

has_more
boolean

是否还有更多结果可用