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

# Get entity activity

> Read the newest activity entries for an accessible entity.

Read the newest activity entries for an accessible entity.

Use an OAuth access token issued to `kato-raycast`. Developer keys cannot call this endpoint. See [Raycast authentication](/api-reference/raycast/overview).

Required scopes: `activity:read`.

Returns up to 50 entries, newest first, without pagination. Task visibility applies; meetings require full detail access; records must be active. Unavailable entities return `404`. `comment` is null when activity metadata has no comment.

## Parameters

<ParamField path="entityType" type="string" required>
  task, record, or meeting.
</ParamField>

<ParamField path="entityId" type="string" required>
  Target ID, 1–200 characters.
</ParamField>

## Response

**200** — Returns the resource under `data`. Example IDs and values are illustrative.

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [
      {
        "id": "activity_example",
        "action": "comment",
        "comment": "Brief is ready for review.",
        "actor": null,
        "createdAt": "2026-09-07T12:00:00.000Z"
      }
    ]
  }
  ```
</ResponseExample>

<RequestExample>
  ```bash Request theme={null}
  curl --fail-with-body --silent --show-error \
    "https://api.getkato.io/v1/raycast/entities/$KATO_ENTITY_TYPE/$KATO_ENTITY_ID/activity" \
    -H "Authorization: Bearer $KATO_RAYCAST_ACCESS_TOKEN"
  ```
</RequestExample>

Set path-ID environment variables to values returned by your workspace before running the request.


## Related topics

- [All endpoints](/api-reference/endpoints.md)
- [Raycast response models](/api-reference/raycast/models.md)
- [Get Raycast task details](/api-reference/raycast/tasks-get.md)
- [Webhook event reference](/api-reference/webhooks/events.md)
- [Objects and records API](/api-reference/objects-and-records.md)
