Guardant Health Results API

Molecular profiling results delivered back to the patient chart.

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/guardant-health-results-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

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: {}