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

# List Person Activity

> A person's full timeline, same shape as the account's

Same event shape as [List Account Activity](/api-reference/get-account-activity),
scoped to one person.

## Path Parameters

<ParamField path="id" type="string" required>
  The person's LinkedIn numeric id.
</ParamField>

## Query Parameters

<ParamField query="types" type="string">
  Comma-separated event types to include. Omit for all.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/persons/998877/activity" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "events": [
        {
          "type": "clustr_action",
          "subtype": "intro_accepted",
          "occurred_at": "2026-09-05T12:00:00Z",
          "actor": "alice@yourco.com",
          "detail": { "kind": "intro_accepted", "actor": "alice@yourco.com", "detail": {} }
        }
      ],
      "has_more": false
    }
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": { "message": "person not found", "code": "NOT_FOUND" }
  }
  ```
</ResponseExample>
