v1
latestOpenAPI 3.0.0MIT2026-07-22275773.2 KBCostEstimate
Create Cost Estimate
Creates a cost estimate for medical billing codes based on verification data.
post/v1/cost-estimate
Request body
Example request
{
"verificationId": "fb701ac1-1246-4860-b1ec-bd916b97a990",
"tin": "752326127",
"networkStatus": "inn",
"tier": 1,
"lines": [
{
"code": "90837",
"contractedRate": 150
}
]
}Response
A cost estimate
Example response
{
"requestId": "0942a568-b015-438e-b7be-d0234f401f35",
"verificationId": "fb701ac1-1246-4860-b1ec-bd916b97a990",
"paidAmount": 80,
"patientResponsibility": 120,
"lines": [
{
"code": "90837",
"adjustments": [
{
"reasonCode": "1",
"amount": 120
}
]
}
]
}