Skip to main content
GET
/
user
/
self-info
Retrieve own user profile
curl --request GET \
  --url https://app.myhero.so/user/self-info \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "_id": "<string>",
    "fbUid": "<string>",
    "profile": {
      "email": "jsmith@example.com",
      "firstName": "<string>",
      "lastName": "<string>",
      "pictureUrl": "<string>",
      "avatarId": "<string>"
    },
    "settings": {
      "editorFontSize": 123,
      "themeId": 123,
      "treeOrdering": "by-top-folders-locals",
      "selectedSignature": "<string>",
      "customSignature": {
        "kind": "drawn",
        "svgPath": "<string>",
        "viewBox": "<string>"
      }
    },
    "createdAt": 123,
    "updatedAt": 123,
    "onBoardedAt": 123
  }
}

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.

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.

Authorizations

Authorization
string
header
required

HERO personal access token

Response

200 response

data
object
required