top of page

Getting Started

At PrescriptionMatch, we bring the future of medicine to your doorstep with cutting-edge genetic testing that ensures your medications are as unique as you are. Say goodbye to one-size-fits-all prescriptions and hello to personalized care that works with your body, not against it. Start your journey to smarter, safer medications today!"

Depositphotos_57341117_XL.jpg

Testing made easy—just for you!

Order Your Test

1

Ordering your pharmacogenomic test is quick and simple. Just select your test, complete the purchase, and we'll ship the kit directly to you. Follow the easy instructions to collect your sample, send it back, and get personalized results in no time.

Get Your Results

2

Access your pharmacogenomic test results easily through our secure online portal. Once your sample is processed, you'll receive an email notification. Simply log in to view your personalized insights, detailed reports, and recommendations,

Speak to an Expert

3

With the Total Health Match Plan, you have the option to speak with a certified genetic counselor. Once your results are ready, you can schedule a one-on-one session to review your genetic insights, personalized medication options, and any questions you may have.

Get Your Rx Delivered

4

After your doctor reviews your results, and if a new medication is appropriate, it can be ordered and delivered to you at a discounted price

Real Stories, Real Results – 

Hear how personalized medicine through PGx testing has transformed the health journeys of our patients

Real Stories, Real Results!

“I have to tell you that I found this entire experience enlightening.  If I can save my employees from experiencing the TORTURE of starting a new medication with great hope—only to have the side effects make you feel insane—and then have to slowly wean yourself off the medication just to get back to the starting point, I’M IN!!

Depositphotos_218950194_xl-2015.jpg

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