Natera Orders API

Test order submission (modeled on the documented order workflow).

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/natera-orders-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

natera-orders-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Natera EMR Ordering and Results Integration Orders API
  description: Representational model of Natera's documented EMR integration surface. Natera does NOT publish a public developer REST API. Test ordering and results delivery are provisioned per health system over the Epic Aura hub and point-to-point HL7, with pre-built orders in the Epic Foundation System. This document models that bidirectional order/results workflow as an HTTP interface for cataloging purposes only - the paths, schemas, and base URL below are NOT official, published Natera endpoints and must not be treated as a live API contract. Integration is established with a Natera EHR specialist (see https://www.natera.com/emr/).
  termsOfService: https://www.natera.com/privacy-notices/
  contact:
    name: Natera EHR Integration
    url: 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; integration endpoints are not publicly published.
tags:
- name: Orders
  description: Test order submission (modeled on the documented order workflow).
paths:
  /emr/orders:
    post:
      operationId: submitOrder
      tags:
      - Orders
      summary: Submit a Natera test order (representational).
      description: 'Models the bidirectional order leg documented for the Epic Aura hub: an order plus related documentation (progress notes, pathology reports, pedigree charts, personal/family cancer history) is transmitted to Natera. Not a published endpoint.'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Order'
      responses:
        '202':
          description: Order accepted for processing (representational).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderAck'
components:
  schemas:
    OrderAck:
      type: object
      properties:
        orderId:
          type: string
        status:
          type: string
          example: accepted
    Order:
      type: object
      properties:
        patientId:
          type: string
          description: Patient identifier within the ordering EHR.
        test:
          type: string
          description: Natera test ordered (e.g., Panorama, Horizon, Signatera, Prospera).
        orderingProvider:
          type: string
        documents:
          type: array
          description: Order-related documentation transmitted to Natera.
          items:
            type: string