Mental Health Quickstart
As a prerequisite, you must have credentials to access our API. If you do not have credentials, please reach out to our team to get set up.
Authentication
Our API is authenticated using HTTP Basic Authentication. You’ll need to pass in your credentials with every API request.
Overview
In this 5 minute quickstart, we will walk through how to submit benefits requests. Each of these requests will trigger a call to the specified insurance payor, and when completed, you’ll receive the results at any webhooks you’ve set up.
Create an Inquiry
Let’s walk through an example use case of the Mental Health API. We’ll be creating an inquiry to trigger a call on the Health Harbor API and retrieve the benefits information for a patient. You will need to provide information on the patient, patient’s insurance, provider, and the benefits you are interested in checking.
You can choose from existing common sets of procedure codes (e.g. PSYCHOTHERAPY
, OFFICE_VISIT_NEW_PATIENT
) and add-on information such as network status or plan information. You can also provide your own custom procedure codes. For additional codes, please use CODE_LOOKUP_BENEFITS
as the benefits_query
and pass in the specific codes as benefits_codes
.
For the full list of possible queries, please refer to the Mental Health API documentation.
Successful creations will return an inquiry_id
. You can use this inquiry_id
to check on its status and see results.
Retrieve an Inquiry
Now that you’ve made a mental health inquiry, you can check on the results with a GET request using the inquiry_id
returned when you created an inquiry. This is an alternative to receiving the results at your webhook, which will be sent automatically once the results are complete if it is set up.
Here is a sample response.