The Auth Verification API is designed to flag whether a particular medical procedure requires Prior Authorization (PA) from the insurance provider. This API helps healthcare providers determine if the insurance plan requires additional approval before a procedure or treatment can be carried out.
POST /api/v1/auth/verifyThe response indicates whether or not Prior Authorization is required for the specified procedure under the given insurance plan.
1
2{
3 "insurance": "Blue Cross",
4 "plan": "PPO",
5 "hcpcs_code": "J1745"
6}
71
2{
3 "prior_auth_required": true
4}
5Response Codes