Authentication

You'll need to authenticate every request to access any of the Advisor endpoints in the advisor-api.wealth.com API. In this guide, we'll look at how authentication works. Wealth.com Advisor API uses header basic authentication value to authenticate each request.

Basic Authentication

Example request with auth

  curl --location 'https://advisor-api.wealth.com/v1/clients/' \
    --header 'Content-Type: application/json' \
    --header 'Authorization: Basic xxxxxxxxxxxxx' \
    --data '{
      "advisor_id": "cn4910ny98ec9vb3ghj",
      "team_id": "cn4910ny98ec9vb3ghj"
    }'

Please don't commit your Wealth.com Advisor API username or password to GitHub!