top of page
Depositphotos_52228649_XL.jpg

Is PGx testing right for you? Take the survey

We care about your health and want to ensure that the medications you take are the best fit for your unique needs. By filling out this quick, confidential survey, you'll help us determine if personalized genetic testing could lead to safer, more effective treatment options for you. Take the first step toward better health today!

Begin Survey
2. Are you Currently taking Medications?
4. Have you experienced any adverse drug reactions or side effects from medications?
5. Do you have a history of multiple medication adjustments or ineffective treatments?
6. Are there any known genetic conditions or family health issues in your family history?
7. Have you discussed your medication-related concerns with your healthcare provider?
8. Do you have any chronic conditions that require ongoing medication management?
9. Have you had any recent changes in your medication regimen or health status?
10. Are you under the care of a specialist who could benefit from PGx insights?

At PrescriptionMatch.com, your privacy is our top priority. All information you provide in our survey is kept strictly confidential and will only be used to improve our services. We do not share, sell, or disclose your personal data to any third parties. Your responses remain anonymous, and your privacy is fully protected

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