⌘K
Flagship Platform

APEX Nexus Platform

Integrated EHR backbone — 663+ data endpoints, 355+ FHIR types, semantic queries, GPID identity, and clinical workflows.

https://api.parkerapex.comhttps://developers.parkerapex.com

Live API Status — APEX Nexus

Probing production endpoints…

Rate Limits & SLA

Rate limit

10,000 req/min

Burst

500 req/sec

Uptime SLA

99.95%

Support

24×7 P1 · 1h response

P95 latency

< 450ms FHIR

Retention

7 years clinical

663+

Production Routes

7

Data Domains

355+

FHIR Types

37+

Documented APIs

5

Compliance

Platform Architecture

FHIR R4 Layer

355+ types · SMART · Bulk Export

Identity Layer

GPID · Plexus IAM · OAuth 2.0

Semantic Layer

Federated queries · Purpose-of-use

Clinical Layer

EHR · appointments · medications · imaging

Trust Layer

HIPAA · SOC 2 · HITRUST · ISO 27001

Data Lake

HAPI R4 longitudinal store

Data Domains

Integration Path

Core Nexus API Services

FHIR R4 API

HL7 FHIR R4 compliant REST API — 300+ platform resource types (25 gateway REST documented), 137+ endpoints. Full SMART on FHIR OAuth 2.0, bulk export, subscriptions, and terminology services.

https://api.parkerapex.com/fhir/R4
GET
/fhir/R4/metadata

Capability Statement

45ms/120ms100/min200
GET
/fhir/R4/.well-known/smart-configuration

SMART on FHIR Configuration

30ms/80ms100/min200
GET
/fhir/R4/PatientSMART

Search Patients

180ms/450ms60/min200
GET
/fhir/R4/Patient/{id}SMART

Read Patient

65ms/180ms120/min200
POST
/fhir/R4/PatientSMART

Create Patient

250ms/600ms30/min201
GET
/fhir/R4/ObservationSMART

Search Observations

200ms/500ms60/min200
POST
/fhir/R4/ObservationSMART

Create Observation

150ms/350ms60/min201
GET
/fhir/R4/ConditionSMART

Search Conditions

170ms/420ms60/min200
+17 more endpoints in API Explorer →

Identity & GPID Resolution API

Golden Record Patient Identity (GPID) — deterministic SHA-256 matching, identity lifecycle management, merge/split operations, and dual-verified data resolution.

https://api.parkerapex.com/api/identity
POST
/api/identity/matchService

Match Demographics

85ms/220ms120/min200
POST
/api/identity/resolveService

Resolve or Create GPID

120ms/350ms60/min200
GET
/api/identity/{gpid}Bearer

Get Identity Record

55ms/150ms120/min200
POST
/api/identity/mergeBearer

Merge GPIDs

300ms/800ms10/min200
POST
/api/identity/splitBearer

Split GPID

350ms/900ms10/min200

NPI Provider Registry API

National Provider Identifier (NPI) lookup, validation, and search. Proxied access to CMS NPPES with caching and enrichment.

https://api.parkerapex.com/api/npi
GET
/api/npi/searchBearer

Search Providers

250ms/600ms60/min200
GET
/api/npi/{npi}Bearer

Lookup Provider by NPI

120ms/300ms120/min200
GET
/api/npi/validate/{npi}

Validate NPI Format

5ms/15ms300/min200

Platform Operations & Monitoring API

System health checks, observability endpoints, audit logging, and operational metrics across all Parker Apex services.

https://api.parkerapex.com
GET
/health

Health Check

5ms/15ms300/min200
GET
/ready

Readiness Check

25ms/80ms60/min200
GET
/status

System Status

100ms/300ms30/min200
GET
/api/auth/meBearer

Current User Profile

35ms/90ms60/min200

Route catalog

663 production routes grouped by data domain. Signed-in partners can search the full catalog in the API Explorer.

Clinical EHR

262+ routes

Identity & IAM

113+ routes

FHIR & Interop

85+ routes

Document Intelligence

73+ routes

Platform Ops

60+ routes

Other Platform

39+ routes

Mobile & Portal

31+ routes

OpenAPI contract

Machine-readable Nexus spec: apex-nexus-v1.openapi.yaml

Download YAML →

Integration toolkit

Official SDKs

APEX Nexus certification track

11 required items · platform + product-specific checks

Full checklist →
  • First authenticated API call in sandbox
  • OAuth or API key with least-privilege scopes
  • FHIR R4 read against sandbox lake
  • GPID boundary headers on write paths
  • Webhook HMAC-SHA256 verification implemented
  • Webhook idempotency by delivery ID

+8 more on the certification page

Complete all required items before production go-live

Webhook events for APEX Nexus

Subscribe at /webhooks — verify HMAC-SHA256 signatures

Event catalog →
pipeline.sync.completedPipeline

FHIR or batch sync job finished successfully.

{
  "event": "pipeline.sync.completed",
  "job_id": "job_abc123",
  "partner_gpid": "CMS-00000001",
  "resource_types": [
    "Patient",
    "Observation"
  ],
  "records_processed": 1240,
  "completed_at": "2026-06-13T20:00:00Z"
}
pipeline.sync.failedPipeline

Sync job failed after retries.

{
  "event": "pipeline.sync.failed",
  "job_id": "job_abc123",
  "error_code": "VALIDATION_ERROR",
  "message": "Bundle entry 14 failed FHIR validation",
  "failed_at": "2026-06-13T20:01:00Z"
}
fhir.subscription.notificationFHIR

R4 Subscription resource triggered — payload is FHIR Bundle.

{
  "resourceType": "Bundle",
  "type": "history",
  "entry": [
    {
      "resource": {
        "resourceType": "Observation",
        "id": "obs-1"
      }
    }
  ]
}
test.pingSystem

Synthetic test delivery from the developer portal Test button.

{
  "event": "test.ping",
  "message": "Parker Apex webhook test delivery",
  "webhook_id": 1
}