top of page
Privacy emblem.png

Register Your Kit

Once you receive your PrescriptionMatch test kit, please register it here to securely link your sample and begin processing. Registration ensures your test is properly associated with you and allows the laboratory to analyze your sample. Your information is encrypted and shared only with authorized testing partners, helping protect your genetic privacy throughout the process.

  • Facebook
  • Twitter
  • LinkedIn
  • Instagram

Contact

If you have any questions about this registration, please contact our support team.

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