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

# Get Dream Activity

> Supersede/merge activity feed for a project, newest first (keyset-paginated).



## OpenAPI

````yaml get /api/v1/orgs/organizations/{org_id}/projects/{project_id}/dream/activity/
openapi: 3.0.1
info:
  title: Mem0 API Docs
  description: mem0.ai API Docs
  contact:
    email: support@mem0.ai
  license:
    name: Apache 2.0
  version: v1
servers:
  - url: https://api.mem0.ai/
security:
  - ApiKeyAuth: []
paths:
  /api/v1/orgs/organizations/{org_id}/projects/{project_id}/dream/activity/:
    get:
      tags:
        - dream
      summary: Get Dream activity
      description: >-
        Supersede/merge activity feed (newest first), keyset-paginated.
        Synthesis output is not included here — see the runs endpoint.
      operationId: get_dream_activity
      parameters:
        - name: org_id
          in: path
          required: true
          description: Unique identifier of the organization.
          schema:
            type: string
        - name: project_id
          in: path
          required: true
          description: Unique identifier of the project.
          schema:
            type: string
        - name: limit
          in: query
          required: false
          description: Page size (default 50, max 200).
          schema:
            type: integer
            default: 50
        - name: cursor
          in: query
          required: false
          description: Opaque keyset cursor from a previous page's `next_cursor`.
          schema:
            type: string
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        memory_id:
                          type: string
                          description: The superseded/merged memory's ID.
                        text:
                          type: string
                          description: The memory's text (truncated).
                        transition:
                          type: string
                          description: Lifecycle transition.
                          enum:
                            - merged
                            - superseded
                        at:
                          type: string
                          description: When the transition happened.
                          format: date-time
                        replaced_by:
                          type: object
                          properties:
                            id:
                              type: string
                              description: ID of the newer memory.
                            text:
                              type: string
                              description: Text of the newer memory (truncated).
                              nullable: true
                          nullable: true
                          description: >-
                            The newer memory that replaced this one (null for a
                            merge with no single replacement).
                        sources:
                          type: array
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                                description: Source memory ID.
                              text:
                                type: string
                                description: Source memory text (truncated).
                          nullable: true
                          description: >-
                            Always null on this feed; synthesis provenance is
                            shown on the runs feed.
                  next_cursor:
                    type: string
                    description: Cursor for the next page, or null when there are no more.
                    nullable: true
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        API key authentication. Prefix your Mem0 API key with 'Token '. Example:
        'Token your_api_key'

````