GET/profile

User Details

The GET /user endpoint retrieves the user's account details, including the number of calls consumed so far for the current month.

Responses

StatusMeaningDescriptionSchema
200OKSuccessuserDetailsResp
401UnauthorizedAuthentication Failed!None
500Internal Server ErrorInternal Server ErrorNone

Code Samples

const headers = {
  'Accept':'application/json',
  'Authorization':'Bearer YOUR_ACCESS_TOKEN'
};

fetch('/api/v1/profile', {
  method: 'GET',
  headers: headers
})
.then(function(res) {
  return res.json();
}).then(function(body) {
  console.log(body);
});

Need Support?

Our team is here to help you integrate and make the most of our APIs. Get in touch for technical support, custom solutions, or any questions.