Dental Quickstart
These endpoints require authentication. Please see authentication for more information.
Overview
In this quickstart, we will retrieve benefits for a patient for a dental provider. We will walk through the requests needed to create an inquiry and retrieve the results.
Create an Inquiry
First, we will send a POST request to create a dental inquiry. This provides the information necessary to check the patient’s benefits on behalf of the dental provider.
The first character in the CDT codes (D) can be optionally omitted when passed
into benefits_codes
.
If the request has been successfully created, we will receive a response like this:
Retrieve an Inquiry
Now that we’ve made a dental inquiry, we can check on the results using the inquiry_id
received during inquiry creation.
Here is a sample response.
Alternatively, you can instead retrieve information on all the inquiries you’ve submitted. This can be filtered by the external_id
you provided when you created the inquiry. Each inquiry will be returned in the array.
Here is an example of a more complex benefits request that also retrieves frequencies and treatment history. Note the addition of CODE_LOOKUP_FREQUENCIES
and TREATMENT_HISTORY
to benefits_query
.
And the associated response:
Great! Now you have successfully created a dental inquiry and retrieved the results. For further details on the parameters and fields in the requests and the responses, please refer to our Detailed API Reference.