RCMOrbit Logo RCMOrbit

Developer Documentation

Welcome to the RCMOrbit API. Our high-fidelity JSON API allows you to programmatically verify dental eligibility, retrieve benefit breakdowns, and access patient history in real-time.

Authentication

Authenticate your requests by including your API key in the header.

Authorization: Bearer [YOUR_API_TOKEN_HERE]

Core Endpoint

POST https://api.rcmorbit.com/v1/eligibility/check

Request Payload

Send a JSON body with the subscriber details and payer slug.

{
  "payer_slug": "cigna",
  "provider_npi": "1234567890",
  "subscriber": {
    "member_id": "U12345678",
    "dob": "1985-06-15",
    "first_name": "John",
    "last_name": "Doe"
  },
  "service_date": "2025-01-20"
}