> ## Documentation Index
> Fetch the complete documentation index at: https://docs.r28.ai/charter/llms.txt
> Use this file to discover all available pages before exploring further.

# activity

> List recent API activity for the authenticated team.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://api.firecrawl.dev/v2/team/activity"}</code></div>

```python firecrawl_activity.py theme={null}
from charter.packs import firecrawl

result = await firecrawl.activity.ainvoke({})
```

<Note>
  Pages by cursor: `cursor` is sent back as `cursor`.
</Note>

## Query parameters

<div className="reference-table">
  | Field      | Type                                                                          | Description                                                                                                                          |
  | ---------- | ----------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
  | `endpoint` | [ActivityEndpoint](/charter/charter/packs/firecrawl/account/objects#activityendpoint) | Filter by endpoint.                                                                                                                  |
  | `limit`    | `integer`                                                                     | Maximum number of results per page. The server applies 50 when this is absent. <span className="field-constraints">≥ 1; ≤ 100</span> |
  | `cursor`   | `string`                                                                      | Cursor for pagination. Use the cursor value from the previous response.                                                              |
</div>
