At WealthTechs Inc., we are committed to providing you with the best tools and services to enhance your data endeavors. To ensure the security and efficiency of your access, we have implemented an industry-standard procedure for granting access to our API REST services.

Requesting Data Services

  • Initial Request: To gain access to our API services, you will first need to request one or more of our data services. These services are tailored to meet your specific data needs. To initiate this process, please reach out to our dedicated customer service team.
  • Customer Service Assistance: Our experienced customer service team is here to assist you throughout the process. They will guide you in choosing the data services that align with your requirements and ensure that you have all the information you need.

Onboarding Process

  • Onboarding: Once you have made your data service requests, our customer service team will initiate the onboarding process. This step involves setting up your account, verifying your identity, and configuring the requested data services.
  • Credentials Provision: After successful onboarding, you will be provided with the necessary credentials to access our products securely, including our API REST.
Example Credentials

// Username: TESTUSER123
// Password: RandomPassword123+
// Email: yourname@yourcompany.com
  • Access to our Portal: Once you have your credentials secured, you will be able to access to WealthTech’s ClearView Portal in order to make use of our JWT token generator.

Access Management

  • JWT Token Generator: Once you logged in to ClearView Portal, you will have access to our JWT token generator. This powerful tool allows you to grant access to yourself and other members of your company, as needed, to use our API services.
  • Flexibility and Control: You will have complete control over the access you grant. Whether you need to collaborate with colleagues, access data from different departments, or streamline your own workflow, our JWT token generator puts the power in your hands.

Alternative way to get your JWT Token

Let’s see an example of how you can use the fetch API in JavaScript to send a GET request to our JWT Token resource:

Resource: https://api.wealthtechs.com/v1/Tokens

Authentication: Basic

Username: yourname@yourcompany.com
Password: RandomPassword123+
// Use the btoa() function to encode your credentials in base64 format.
let credentials = btoa('yourname@yourcompany.com:RandomPassword123+');

// Make the request and log the response
fetch("https://api.wealthtechs.com/v1/Tokens", {
  headers: new Headers({
    "Authorization": "Basic " + credentials,
  }),
})
.then(response => response.json())
.then(data => console.log(data));
{
    "userName": "TESTUSER123",
    "email": "yourname@yourcompany.com",
    "jwt": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJVc2VySW5mbyI6IntcIklkXCI6OTM0LFwiSWRlbnRpdHlJZFwiOlwiNDI5NmIyMzItZGUxYy00YWZhLWFlYmItNDY5ZDYxZWU0NzJjXCIsXCJVc2VyTmFtZVwiOlwiTUFaT1o0NFwiLFwiRW1haWxcIjpcIm1hdGlhc3pvQHdlYWx0aHRlY2hzLmNvbVwiLFwiRmlyc3ROYW1lXCI6XCJNYXRpYXNcIixcIkxhc3ROYW1lXCI6XCJab3pheWFcIixcIklzQ2xpZW50VXNlclwiOmZhbHNlfSIsIm5iZiI6MTY5NDU0NDM2MiwiZXhwIjoxNjk0NjMwNzYyLCJpc3MiOiJXZWFsdGhUZWNocyIsImF1ZCI6IkFQSVVzZXJzIn0.6auZH-83ML_cDo2bqbgECvKcsvXOefbVg68xq-0di2g",
    "validFrom": "2023-08-29T18:39:07Z",
    "validTo": "2023-08-30T18:39:07Z"
}

Example JWT Token

// This is just an Example JWT Token
// You must obtain yours via ClearView Portal or our GET /v1/Tokens resource.

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJVc2VySW5mbyI6IntcIklkXCI6OTgxLFwiSWRlbnRpdHlJZFwiOlwiNjMyMzhhZTQtMzAyMC00NWI5LWEwODktOTE2ZTY4MDMyZTY3XCIsXCJVc2VyTmFtZVwiOlwiMF9URVNUX0NMSUVOVFwiLFwiRW1haWxcIjpcInRlc3RjbGllbnRAd2VhbHRodGVjaHMuY29tXCIsXCJGaXJzdE5hbWVcIjpcIlRlc3RcIixcIkxhc3ROYW1lXCI6XCJDbGllbnRcIixcIklzQ2xpZW50VXNlclwiOmZhbHNlfSIsIm5iZiI6MTY5NDcwMjU3OSwiZXhwIjoxOTI0OTIzNjAwLCJpc3MiOiJXZWFsdGhUZWNocyIsImF1ZCI6IkFQSVVzZXJzIn0.bNcP0ouNwtFoxrI7pYXw0WKiw0TN6w_R2-Ban5moo1A