top of page

With this optional add-on, members receive ongoing support beyond their initial genetic test results. You’ll gain premium access to the PrescriptionMatch app, including personalized medication reminders to help you stay on track. As pharmacogenomic science continues to evolve, you’ll receive updates when new gene–drug insights become available, so your results stay current, not outdated. Members also receive exclusive discounts on future testing, ensuring continued access to personalized medication guidance over time.

Monthly Membership Add-On

SKU: PGx Add-On
$15.00Price
Quantity
Price Options
Add-On Membership
Keep up to date on your genetics!
$15.00every month until canceled

      © 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;