Product

Developers

Free Tools

v0.1.0 — 65 endpoints

Build with the knowledge layer

One API call resolves six layers of billing context. Get your key, pick your language, and start resolving in under 5 minutes.

Try it

curl -X POST https://api.rci.health/v1/knowledge/resolve \
  -H "X-API-Key: $RCI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ccn":"170001","cpt":"99213","payer":"Medicare"}'

Response

L1
L2
L3
L4
L5
L6
Hit resolve to see it work

Three steps to billing intelligence

01

Get your API key

Sign up at app.rci.health. Your key is prefixed kp_live_ for production, kp_test_ for sandbox.

X-API-Key: kp_live_abc123...
02

Resolve knowledge

Pass a CCN + CPT code. Get six layers of billing context in a single response.

POST /v1/knowledge/resolve
{"ccn":"170001","cpt":"99213"}
03

Use the response

Payment estimates, billing forms, modifiers, payer rules — structured JSON ready for your app.

{"estimated_payment": 80.78,
 "billing_form": "UB-04",
 "payer_filing": "12 months"}

Pick your language

Official SDKs wrap the REST API with typed methods, automatic retries, and built-in pagination.

P

Python

Available
pip install rci-health
T

TypeScript

Available
npm install @rci-health/sdk
G

Go

Coming soon
go get github.com/rci-health/rci-go

MCP Server

Connect Claude, Cursor, or any MCP agent directly to billing knowledge. 6 tools, zero integration code.

Test mode

Keys prefixed kp_test_ return realistic mock data. Build your full integration before going live.

Documentation