JetPatient implements the standard X12 transaction set plus FHIR R4 as an alternative transport. Identity is OAuth 2.0 + SAML 2.0 + SCIM. The full spec is downloadable below — including sandbox keys, Postman collection, and the exact companion-guide deltas vs. CAQH CORE Phase IV.
Plan-agnostic by construction. The TPA remains plan-of-record; JetPatient sits next to it as a navigation layer that produces ranked outreach cohorts and routed-care outcomes.
If your platform already produces standard X12 and you have a SAML IdP, you have everything you need to integrate.
Five inbound transactions, two outbound. Custom CSV supported as a fallback for legacy platforms.
834 eligibility (monthly + delta)837 claims (36–60mo bulk + monthly)270 eligibility inquiry (real-time)271 eligibility response835 remittance (wrap only)OAuth 2.0 client-credentials for M2M, SAML 2.0 + SCIM 2.0 for humans. Auth0 broker; Okta / Azure AD / Ping all tested.
Guardian for humans, PREDICT API for systems, webhooks for event consumers. All HTTPS-only with documented latency SLAs.
status.jetpatient.comThe OAuth 2.0 client-credentials flow with mTLS at the edge. Three calls; complete round-trip in well under a second.
POST https://auth.jetpatient.com/oauth/token Content-Type: application/x-www-form-urlencoded [mTLS client certificate pinned at edge] grant_type=client_credentials &client_id=tpa-webtpa-prod &client_secret=[redacted — issued under MSA] &audience=https://api.jetpatient.com &scope=read:members write:outreach // 200 OK { "access_token": "eyJhbGc…", "token_type": "Bearer", "expires_in": 900 }
GET https://api.jetpatient.com/fhir/r4/Patient?identifier=https://jetpatient.com/tokens|jp-tok-9f3d Authorization: Bearer eyJhbGc… Accept: application/fhir+json // 200 OK { "resourceType": "Patient", "id": "jp-tok-9f3d", "identifier": [{ "system": "https://jetpatient.com/tokens", "value": "jp-tok-9f3d" }], "meta": { "security": [{ "code": "HOPERAT" }] } }
GET https://api.jetpatient.com/audit-log?subject=jp-tok-9f3d&since=2026-06-03T14:00:00Z Authorization: Bearer eyJhbGc… // 200 OK — every read and write is logged with actor, scope, IP, and full request hash [{ "actor": "tpa-webtpa-prod", "action": "fhir.read.Patient", "subject": "jp-tok-9f3d", "at": "2026-06-03T14:21:08.412Z", "ip": "52.x.x.x" }]
Everything you need to start UAT today. Sandbox keys ship after MSA + BAA are countersigned; the PDF spec and Postman collection are linked here directly.
Every SLA below is documented in the MSA with a measurable trigger and a contractual remedy.
Our integrations lead, your platform team, and (optionally) the sponsor's benefits team. We walk the spec, demo the sandbox, and answer the platform-specific edge cases.