Natera website screenshot

Natera

Natera is a clinical genetic testing company spanning women's health, oncology, and organ health. Rather than a public developer REST API, Natera exposes integration surfaces - Epic Aura bidirectional order/results, OncoEMR (Flatiron) and other EHR connectivity over HL7, the Constellation cloud bioinformatics platform for partner labs, and clinician/patient portals plus a provider mobile app.

6 APIs 0 Features
Genetic TestingHealthcareDiagnosticsEHR IntegrationHL7

APIs

Natera EMR Ordering and Results Integration

Bidirectional electronic ordering and results delivery via the Epic Aura hub and point-to-point HL7, with pre-built orders for all Natera tests in the Epic Foundation System. No...

Natera Epic Aura Hub Integration

Connect once to the Epic Aura (Order and Results Anywhere) hub for secure, HIPAA-compliant bidirectional order and results integration, transmitting order documentation (progres...

Natera OncoEMR (Flatiron) Integration

Natera's oncology testing portfolio integrated into Flatiron Health's cloud-based OncoEMR platform for electronic ordering and results delivery inside the cancer-care clinical w...

Natera Constellation Bioinformatics Platform

Cloud-based platform giving partner laboratories programmatic access to Natera's cell-free DNA bioinformatic algorithms (e.g., Panorama NIPT) to run, monitor, and troubleshoot g...

Natera Connect Clinician Portal

Web portal (Women's Health, Oncology, Organ Health, Rare Disease) for clinicians to order kits and supplies, check testing status and results, download and share reports, and sc...

Natera Provider Mobile App

Provider-facing mobile application backed by Natera's private internal services for managing orders and results on the go. No public API surface is documented for the backend.

Collections

Natera

OPEN

Pricing Plans

Natera Plans Pricing

2 plans

PLANS

Rate Limits

Natera Rate Limits

2 limits

RATE LIMITS

FinOps

Natera Finops

FINOPS

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: '1.0'
info:
  title: Natera EMR Ordering and Results Integration
  description: Representational Open Collection for Natera's documented EMR integration surface. Natera does NOT publish a
    public developer REST API; ordering and results are exchanged per health system over Epic Aura and point-to-point HL7.
    The operations below model that bidirectional workflow for cataloging only and are not official, live Natera endpoints.
    See https://www.natera.com/emr/.
  version: '0.1'
servers:
- url: https://www.natera.com
  description: Placeholder host. Natera does not document a public REST base URL.
operations:
- id: submitOrder
  name: Submit Order (representational)
  method: POST
  path: /emr/orders
  description: 'Models the Epic Aura order leg: transmits an order plus related documentation (progress notes, pathology reports,
    pedigree charts, cancer history) to Natera. Not a published endpoint.'
  request:
    headers:
    - name: Content-Type
      value: application/json
    body:
      type: application/json
      example:
        patientId: patient-123
        test: Panorama
        orderingProvider: provider-456
        documents:
        - progress-note
        - pathology-report
- id: getResults
  name: Get Results (representational)
  method: GET
  path: /emr/results/{orderId}
  description: 'Models the Epic Aura results leg: retrieves results for an order to flow back into the patient EHR. Not a
    published endpoint.'
  parameters:
  - name: orderId
    in: path
    required: true
    schema:
      type: string
    example: order-123