---
title: "List current user's activity events"
method: GET
path: "/api/v1/activity"
tags: ["activity"]
---

# List current user's activity events

`GET /api/v1/activity`

Newest-first feed of memory and search activity for the authenticated user.

## Query parameters

- `space_id` string, nullable — When set, only events for this space_id
- `limit` integer
- `offset` integer
- `cursor` string, nullable — Opaque cursor from `next_cursor` for stable keyset pagination

## Response `200`

Successful Response

- UserActivityFeedResponse
  - `items` UserActivityEventItem[], required
    - `id` string, required
    - `user_id` string, required
    - `space_id` string, nullable
    - `event_type` string, required
    - `source` string, nullable
    - `integration_type` string, nullable
    - `title` string, required
    - `metadata` object, nullable
    - `created_at` string, date-time, required
  - `next_offset` integer, nullable — Pass as `offset` for the next page, or null if no more results
  - `next_cursor` string, nullable — Opaque cursor (created_at + id) for stable pagination; pass as `cursor`

## Other responses

- `401` — Unauthorized
- `422` — Validation Error

---

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