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

# Get entity profile

> Returns the full entity profile from the registry, including the golden record (merged field values from all sources), source attribution map, tags and timestamps.



## OpenAPI

````yaml /api-reference/memory-api.json get /v1/memory/entity/{entity_id}
openapi: 3.1.0
info:
  title: Strattum Memory API
  description: >-
    REST API that serves entity context — profile, timeline, graph, sources and
    formatted context — for agents and UIs. (PRD-003, Workstream 1.3)
  version: 1.0.0
servers: []
security: []
paths:
  /v1/memory/entity/{entity_id}:
    get:
      tags:
        - memory
      summary: Get entity profile
      description: >-
        Returns the full entity profile from the registry, including the golden
        record (merged field values from all sources), source attribution map,
        tags and timestamps.
      operationId: get_entity_v1_memory_entity__entity_id__get
      parameters:
        - name: entity_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Entity Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntityProfileResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EntityProfileResponse:
      properties:
        entity_id:
          type: string
          title: Entity Id
        external_id:
          anyOf:
            - type: string
            - type: 'null'
          title: External Id
        entity_type:
          type: string
          title: Entity Type
        golden_record:
          additionalProperties: true
          type: object
          title: Golden Record
        source_map:
          additionalProperties:
            type: string
          type: object
          title: Source Map
        confidence_score:
          type: number
          title: Confidence Score
        version:
          type: integer
          title: Version
        tags:
          items:
            type: string
          type: array
          title: Tags
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Updated At
      type: object
      required:
        - entity_id
        - external_id
        - entity_type
        - golden_record
        - source_map
        - confidence_score
        - version
        - tags
        - created_at
        - updated_at
      title: EntityProfileResponse
      description: Response for GET /entity/{entity_id}.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````