GET
/
v1
/
me
My user profile
curl --request GET \
  --url https://api.kajabi.com/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "initials": "<string>",
      "name": "<string>",
      "email": "<string>",
      "role_level": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Success

data
object