top of page
  • At home genetic test

  • Analysis of findings

  • Educational review

  • Clinically validated PGx panel covering common drug classes.

  • Processed in a CLIA‑certified laboratory.

Prescription Match: PGx Test Only

SKU: PREM CP
$299.00Price
Quantity

      © 2026 by Powered by Prescription Match, inc. 

      bottom of page
      import React, { useState, useEffect } from 'react'; function TestStatus() { const [status, setStatus] = useState("Awaiting test return"); useEffect(() => { // Fetch status from the backend (for example, /get_test_status) fetch('/get_test_status') .then(response => response.json()) .then(data => setStatus(data.status)); }, []); return (

      Test Status: {status}

      {status === "Received" && ( )}
      ); function handleWatchInstructions() { // Redirect to instructional video window.location.href = 'https://example.com/instructions'; } } export default TestStatus;