top of page

Essential Match

Unlock personalized medication insights today and make informed decisions about your health! Join the Essential Match Plan and take control of your medication safety.

Essential Match Kit.png

Essential Match

With our basic test, you'll receive a comprehensive pharmacogenomic testing kit designed for ease of use, allowing you to discover how your DNA influences your response to medications. You will also get a detailed, personalized medication report tailored to your genetic profile, helping you understand the most effective medications for you. Additionally, you’ll have lifetime access to your report through a secure online portal, where you can view and manage your results anytime, anywhere. Your report will be delivered directly to this secure portal, ensuring your information is always protected and easily accessible.

Essential Match

$349

Sample report.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;