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

# Retrieve own user profile

> Returns the full user document for the authenticated caller, including profile fields and editor settings such as font size, theme, tree ordering, and signature preferences.



## OpenAPI

````yaml get /user/self-info
openapi: 3.1.0
info:
  title: HERO API
  version: current
  description: |-
    The HERO REST API.

    See https://developers.myhero.so for the rendered docs.
servers:
  - url: https://app.myhero.so
security: []
paths:
  /user/self-info:
    get:
      tags:
        - Users
      summary: Retrieve own user profile
      description: >-
        Returns the full user document for the authenticated caller, including
        profile fields and editor settings such as font size, theme, tree
        ordering, and signature preferences.
      operationId: getSelfUserInfo
      responses:
        '200':
          description: 200 response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      _id:
                        type: string
                      fbUid:
                        type: string
                      profile:
                        type: object
                        properties:
                          email:
                            type: string
                            format: email
                          firstName:
                            type: string
                          lastName:
                            type: string
                          pictureUrl:
                            type: string
                          avatarId:
                            type: string
                        required:
                          - email
                          - firstName
                      settings:
                        type: object
                        properties:
                          editorFontSize:
                            type: number
                          themeId:
                            type: number
                          treeOrdering:
                            type: string
                            enum:
                              - by-top-folders-locals
                              - by-created-at
                              - by-updated-at
                          selectedSignature:
                            type: string
                          customSignature:
                            anyOf:
                              - type: object
                                properties:
                                  kind:
                                    type: string
                                    enum:
                                      - drawn
                                  svgPath:
                                    type: string
                                  viewBox:
                                    type: string
                                required:
                                  - kind
                                  - svgPath
                                  - viewBox
                              - type: object
                                properties:
                                  kind:
                                    type: string
                                    enum:
                                      - typed
                                  text:
                                    type: string
                                required:
                                  - kind
                                  - text
                      onBoardedAt:
                        type:
                          - number
                          - 'null'
                      createdAt:
                        type: number
                      updatedAt:
                        type: number
                    required:
                      - _id
                      - fbUid
                      - profile
                      - settings
                      - createdAt
                      - updatedAt
                required:
                  - data
        '500':
          description: 500 response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: |-
                      Error class name (e.g.

                      ValidationError, NotFound)
                  message:
                    type: string
                    description: Human-readable error message
                  details:
                    type: array
                    items: {}
                required:
                  - error
                  - message
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: HERO personal access token

````