Skip to main content
RRxRouter Developer Portal

Quickstart

Submit a chart or provider encounter against a live, seeded environment.

The fastest path is still the same: verify readiness, use the demo tenant key, then create an asynchronous encounter or chart with an idempotency key.

1. Readiness

Ping the live API

curl https://api.rxrouter.ai/v1/health/ready

2. Submit

Create the first encounter

curl -X POST https://api.rxrouter.ai/v1/charts \
  -H 'Authorization: Bearer rxr_demo_key_12345678' \
  -H 'Idempotency-Key: 00000000-0000-4000-8000-000000000001' \
  -H 'Content-Type: application/json' \
  -d '{"encounterType":"rx_review","patient":{"dateOfBirth":"1990-05-15","stateOfResidence":"TX","biologicalSex":"female"},"intake":{"responses":[{"question":"Current weight","answer":"210 lbs"}],"chiefComplaint":"Weight loss consultation"},"requestedMedication":"semaglutide 0.25mg","serviceLine":"weight_loss"}'