Check a request before anyone sees it
Parses and validates the request against PriorAuthRequestV1 and returns the normalised value, or every failing field path with its message. No payer contact, no submission, no liability — this is the endpoint to call on every keystroke-settled form, not just before submitting.
- Meters as
validate- Billing
- Billed as a standalone validation when it stands alone. A validate that precedes a submitted case is reconciled into that case at invoicing, not charged twice.
- Returns
- application/json
Errors
invalid_jsoninvalid_inputunauthorizedrate_limitedRequest
{
"profile": "aba.v1",
"partner_reference": "clinic-4417/auth-9",
"payer": { "name": "Aetna Better Health of New Jersey" },
"period": { "from": "2026-09-01", "to": "2027-03-01" },
"requested_hours_per_week": 25,
"service_codes": [
{ "cpt": "97153", "description": "Adaptive behavior treatment by protocol", "units_per_period": 2600 },
{ "cpt": "97155", "description": "Adaptive behavior treatment with protocol modification", "units_per_period": 208 }
],
"client": {
"name": "Sam Doe",
"dob": "2020-03-15",
"sex": "male",
"state": "NJ",
"diagnosis_icd10": "F84.0",
"service_delivery_setting": "home"
},
"enrollment": {
"member_id": "W248166043",
"group_number": null,
"subscriber_name": "Alex Doe",
"subscriber_relationship": "parent"
},
"organization": {
"name": "Northwind Behavioral Health",
"npi": "1548392017",
"tax_id": "82-4419907",
"phone": "609-555-0142",
"fax": "609-555-0143",
"address": { "street": "18 Mercer St", "city": "Princeton", "state": "NJ", "zip": "08540" }
},
"clinician": {
"name": "Lisa Provider",
"npi": "1932847561",
"credential": "BCBA",
"license": "35BX00123400",
"license_state": "NJ"
},
"clinical": {
"treatment_plan_date": "2026-08-14",
"diagnosing_provider_name": "Dr. Eval Provider",
"narrative": "The client demonstrates significant deficits across…"
}
}Response
{ "ok": true, "value": { /* the normalised request */ } }