Guardant Health Results API

Molecular profiling results delivered back to the patient chart.

OpenAPI Specification

guardant-health-results-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Guardant Health EMR Integration API (Illustrative Model) Orders Results API
  description: Illustrative, unofficial model of Guardant Health's EMR-integrated ordering and results-delivery interface. Guardant Health does NOT publish a public, self-serve developer API or an official OpenAPI specification. Test ordering and results delivery are provisioned per institutional partner through EMR integrations such as Epic Aura and Flatiron OncoEMR, using interface standards (HL7 v2 / FHIR) negotiated during onboarding. The paths below are a representative model of the documented capabilities (electronic test ordering, order status, results retrieval) and are NOT confirmed public endpoints. There is no documented public base URL; contact Guardant Key Accounts for partner integration.
  termsOfService: https://guardanthealth.com/terms-of-use/
  contact:
    name: Guardant Health Key Accounts
    url: https://guardanthealth.com/precision-oncology/for-institutional-partners/
  version: '0.1'
servers:
- url: https://example.invalid/guardant-health/emr
  description: Placeholder only. No public base URL is documented; integration endpoints are provisioned per institutional partner.
security:
- partnerOAuth2: []
tags:
- name: Results
  description: Molecular profiling results delivered back to the patient chart.
paths:
  /orders/{orderId}/results:
    get:
      operationId: getOrderResults
      tags:
      - Results
      summary: Retrieve results for an order
      description: Illustrative representation of retrieving molecular profiling results for a completed order, delivered into the patient chart. Not a confirmed public endpoint.
      parameters:
      - name: orderId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Result document
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Result'
components:
  schemas:
    Result:
      type: object
      properties:
        orderId:
          type: string
        status:
          type: string
        reportUrl:
          type: string
          description: Reference to the result report delivered into the EMR.
        resultedAt:
          type: string
          format: date-time
  securitySchemes:
    partnerOAuth2:
      type: oauth2
      description: Placeholder. Partner-provisioned authentication is negotiated during EMR onboarding; no public auth flow is documented.
      flows:
        clientCredentials:
          tokenUrl: https://example.invalid/guardant-health/oauth/token
          scopes: {}