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

> Retrieve the profile schema, custom instructions, and enabled flag for the current project.



## OpenAPI

````yaml get /v2/profiles/settings/
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/profiles/settings/:
    get:
      tags:
        - profiles
      summary: Get profile settings
      description: Return the profile settings for the project the API key is scoped to.
      operationId: profiles_settings_read
      responses:
        '200':
          description: Current settings.
          content:
            application/json:
              schema:
                type: object
                properties:
                  enabled:
                    type: boolean
                    description: >-
                      Whether profile generation runs for this project.
                      Project-wide.
                  entities:
                    type: object
                    description: Settings for user profiles, under `user`.
                    properties:
                      user:
                        type: object
                        properties:
                          schema:
                            type: object
                            additionalProperties: true
                            nullable: true
                            description: >-
                              JSON Schema describing the profile. Every property
                              needs a description.
                          custom_instructions:
                            type: string
                            nullable: true
                            description: Extra guidance for the extraction step.
                  capabilities:
                    type: object
                    properties:
                      jobs:
                        type: boolean
                      estimates:
                        type: boolean
                      samples:
                        type: boolean
                      full_rebuild:
                        type: boolean
                        description: >-
                          Whether a project-wide rebuild (regenerate/backfill)
                          is available. Currently false.
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'

````