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

# Get memory details by ID



## OpenAPI

````yaml get /memory/{id}
openapi: 3.0.0
info:
  title: ClearTalk API
  description: The ClearTalk API Documentation
  version: '1.0'
  contact:
    name: Developer Support
    email: devsupport@cleartalk.ai
servers:
  - url: https://api.cleartalk.ai
    description: ClearTalk AI API Server
security: []
tags: []
paths:
  /memory/{id}:
    get:
      tags:
        - Memory
      summary: Get memory details by ID
      operationId: MemoryController_findOne
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Memory details retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      memory_id:
                        type: string
                      name:
                        type: string
                      created_at:
                        type: string
                      users:
                        type: array
                        items:
                          type: object
                          properties:
                            phone_number:
                              type: string
                            created_at:
                              type: string
                            call_count:
                              type: number
                            metadata:
                              type: string
                            last_call_at:
                              type: string
                              nullable: true
                            summary:
                              type: string
        '401':
          description: Unauthorized
        '404':
          description: Memory not found
        '500':
          description: Internal server error
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````