---
title: "List recent API activity"
method: GET
path: "/team/activity"
tags: ["Account"]
---

# List recent API activity

`GET /team/activity`

Lists your team's recent API activity from the last 24 hours. Returns metadata about each job including the job ID, which can be used with the corresponding GET endpoint (e.g. GET /crawl/{id}) to retrieve full results. Supports cursor-based pagination and filtering by endpoint.

## Query parameters

- `endpoint` 'scrape' | 'crawl' | 'batch_scrape' | 'search' | 'extract' | 'llmstxt' | 'deep_research' | 'map' | 'agent' | 'browser' | 'interact'
- `limit` integer
- `cursor` string

## Response `200`

Successful response

- object
  - `success` boolean
  - `data` object[]
    - `id` string — The job ID. Use this with the corresponding GET endpoint to retrieve results.
    - `endpoint` 'scrape' | 'crawl' | 'batch_scrape' | 'search' | 'extract' | 'llmstxt' | 'deep_research' | 'map' | 'agent' | 'browser' | 'interact' — The endpoint used for this job
    - `api_version` string — The API version used for this request
    - `created_at` string, date-time — When the job was created
    - `target` string, nullable — The URL or query that was submitted
  - `cursor` string, nullable — Cursor to use for the next page. Null if there are no more results.
  - `has_more` boolean — Whether there are more results available

---

[API](https://skmtc.net/firecrawl/apis/firecrawl-api.md) · [All operations](https://skmtc.net/firecrawl/apis/firecrawl-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/firecrawl/firecrawl-api/versions/e350fafb5a2a/schema)
