Portal hell
Log in. Click around. Read a screen. Do it again for the next payer. Every front desk knows this loop.
Eligibility control plane
One eligibility contract for every payer. Your software calls Veraxus. Clinics stop living in payer websites.
Truth on the axis between portals and APIs
The problem
Log in. Click around. Read a screen. Do it again for the next payer. Every front desk knows this loop.
Anything that drives a payer website like a person breaks the moment the page changes. That is not a product.
Every payer speaks a different shape. Downstream systems should never see that mess.
The product
Your app asks Veraxus. Veraxus returns coverage in a shape you can ship against — the same way, every payer, every time.
Authorization: Bearer ••••
// Key → vendor → customer org
POST /v1/eligibility
{
"member": "••••••••",
"date_of_service": "2026-08-22"
}
// Veraxus talks to the payer
// Your software never does
{
"active": true,
"network": "in",
"deductible_remaining": 150
}
Staff in a website. Or a bot pretending to be staff. Neither belongs in production software.
A machine interface. JSON in, coverage out, billed when something real answered.
The stack
One front door for every payer. Vendors sell it to their customers. You charge per real check.
How it works
A bearer key identifies the vendor and the customer org. Your app does not hold payer sessions.
Send the member, the date of service, and what you need covered. One call per check.
Normalized benefits, or a clear failure. Same shape for every payer. A billing line when it counted.
Developer surface
POST /v1/eligibility
Authorization: Bearer ••••
{
"member": "••••••••",
"date_of_service": "2026-08-22",
"service": "prophylaxis"
}
{
"status": "ok",
"active": true,
"network": "in",
"deductible_remaining": 150,
"billed": true
}
{
"status": "unavailable",
"message": "This payer is not answering right now.",
"billed": false
}
Who we are
Verax — truthful. Axis — the hinge between two faces. We turn payer eligibility into a machine interface — without pretending a synthetic demo is production coverage.
Honesty is the constraint.
Vendor keys, customer scope, and real coverage — not a slide deck of fake benefits.