top of page

All Products

Welcome to PrescriptionMatch.com! Explore our pharmacogenomic testing options to better understand how your body may process medications. Choose from our PGx Test Only, which provides detailed genetic results, or PGx Test + Doctor Consultation, which includes a review with a licensed healthcare provider. Use this information to support informed discussions with your provider and make choices that fit your needs.
Welcome to PrescriptionMatch.com! Explore our pharmacogenomic testing options to better understand how your body may process medications. Choose from our PGx Test Only, which provides detailed genetic results, or PGx Test + Doctor Consultation, which includes a review with a licensed healthcare provider. Use this information to support informed discussions with your provider and make choices that fit your needs.
Privacy emblem.png

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