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

> Retrieve the structured profile for a user, with a status describing whether generation has completed.



## OpenAPI

````yaml get /v2/entities/{entity_type}/{entity_id}/profile/
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:
  /v2/entities/{entity_type}/{entity_id}/profile/:
    get:
      tags:
        - profiles
      summary: Get an entity's profile
      description: >-
        Return the memory profile for one user.


        Generation is asynchronous, so a known entity that has no profile yet is
        a normal 200 carrying a `status`. A 404 means only that no such entity
        exists.
      operationId: profiles_read
      parameters:
        - name: entity_type
          in: path
          required: true
          schema:
            type: string
            enum:
              - user
          description: The kind of entity that carries the profile.
        - name: entity_id
          in: path
          required: true
          schema:
            type: string
          description: The entity's id, as supplied when the memory was added.
      responses:
        '200':
          description: The profile envelope.
          content:
            application/json:
              schema:
                type: object
                properties:
                  profile:
                    type: object
                    additionalProperties: true
                    description: >-
                      The generated profile, shaped by the project's schema.
                      Empty unless status is succeeded.
                  status:
                    type: string
                    enum:
                      - succeeded
                      - pending
                      - failed
                      - not_enabled
                      - insufficient_data
                    description: >-
                      Generation state. Branch on this rather than on an empty
                      profile.
                  entity_type:
                    type: string
                    enum:
                      - user
                  entity_id:
                    type: string
                  updated_at:
                    type: string
                    format: date-time
                    nullable: true
                  generation_count:
                    type: integer
        '400':
          description: Unsupported entity type.
        '404':
          description: No such entity in this project.
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'

````