Revenue Guard API
Revenue Guard helps CrelioHealth customers classify incoming orders against payer rules before downstream billing workflows begin. Use the public API to look up payer IDs and submit orders for evaluation.
Use the E2E development API while building integrations:
All public paths include /public/v1.
How integrations work
Create an API key
Create an organization-scoped API key in the Revenue Guard dashboard. Keys are environment-specific:
- Sandbox keys start with
rg_test_ - Live keys start with
rg_live_
Find payer IDs
Call GET /public/v1/payer-categories for the public reference list, GET /public/v1/payers to list payer IDs, or GET /public/v1/payers/{payerId} to verify one payer. Payer IDs are passed in payer_ids when submitting orders.
Core concepts
Authenticate requests with the X-API-Key header. The key determines whether the request targets sandbox or live data.
Submit orders for payer rule classification and receive the generated validation result.
Find payer IDs and reference data used by order submissions.
SDKs are planned from this public API contract.
Environments
Do not send a separate environment header. The API key is authoritative for sandbox vs live routing.
Start with sandbox keys while developing. Move to live keys only after your payer lookup and order submission workflows are verified end to end.