> ## 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 Stats

> Lifecycle and synthesis counts for a project, plus reflection freshness.



## OpenAPI

````yaml get /api/v1/orgs/organizations/{org_id}/projects/{project_id}/dream/stats/
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/stats/:
    get:
      tags:
        - dream
      summary: Get Dream stats
      description: >-
        Lifecycle + synthesis counts for the project's Dream dashboard, plus
        reflection freshness. Requires a Pro or Enterprise (CUSTOM) plan.
      operationId: get_dream_stats
      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
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  active:
                    type: integer
                    description: Active (current) memory count.
                  merged:
                    type: integer
                    description: Count of memories merged into a canonical one.
                  superseded:
                    type: integer
                    description: Count of memories superseded by a newer one.
                  synthesized:
                    type: integer
                    description: >-
                      Count of higher-order pattern memories created by
                      synthesis.
                  last_run_at:
                    type: string
                    description: When synthesis last completed.
                    format: date-time
                    nullable: true
                  processed_through:
                    type: string
                    description: >-
                      Timestamp of the newest source memory synthesis has
                      processed.
                    format: date-time
                    nullable: true
                  running:
                    type: boolean
                    description: Whether a synthesis run is currently in flight.
                  next_run_at:
                    type: string
                    description: Projected next synthesis run.
                    format: date-time
                    nullable: true
        '403':
          description: 'Not entitled on the current plan (`upgrade_required: 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'

````