var checks = {age:false,research:false,nohuman:false,nomedical:false,physician:false,liability:false}; var DISC_KEYS = ['age','research','nohuman','nomedical','physician','liability']; var selectedType = null; function toggleCheck(key) { checks[key] = !checks[key]; var item = document.getElementById('disc-'+key); var cb = document.getElementById('cb-'+key); var lbl = document.getElementById('lbl-'+key); if(item) item.className = 'disc-item'+(checks[key]?' checked':''); if(cb) cb.className = 'checkbox'+(checks[key]?' checked':''); if(lbl) lbl.className = 'disc-label'+(checks[key]?' checked':''); var all = DISC_KEYS.every(function(k){return checks[k];}); var btn = document.getElementById('btn-enter'); if(btn) btn.className = 'btn-enter'+(all?'':' locked'); var err = document.getElementById('gate-err'); if(all && err) err.textContent = ''; } function tryEnter() { var all = DISC_KEYS.every(function(k){return checks[k];}); if(!all) { var rem = DISC_KEYS.filter(function(k){return !checks[k];}).length; var err = document.getElementById('gate-err'); if(err) err.textContent = '✕ Please confirm '+rem+' remaining item'+(rem!==1?'s':'')+' above'; DISC_KEYS.forEach(function(k){ if(!checks[k]){ var i=document.getElementById('disc-'+k); if(i) i.classList.add('err'); var c=document.getElementById('cb-'+k); if(c) c.classList.add('err'); } }); return; } document.getElementById('gate').classList.add('hidden'); document.getElementById('apply-gate').style.display='flex'; } function selectType(type, el) { selectedType = type; document.querySelectorAll('.acct-type-card').forEach(function(c) { c.style.background = '#080f18'; c.style.borderColor = 'var(--lgrey)'; var r = c.querySelector('.type-radio'); if(r){ r.style.background='transparent'; r.style.borderColor='var(--lgrey)'; r.innerHTML=''; } }); el.style.background = 'rgba(0,200,224,.06)'; el.style.borderColor = 'rgba(0,200,224,.4)'; var radio = el.querySelector('.type-radio'); if(radio){ radio.style.background='var(--cyan)'; radio.style.borderColor='var(--cyan)'; radio.innerHTML='
'; } var typeErr = document.getElementById('type-err'); if(typeErr) typeErr.textContent = ''; ['physician','researcher','veterinarian','private','none'].forEach(function(t){ var el2 = document.getElementById('cred-'+t); if(el2) el2.style.display = (t===type) ? 'block' : 'none'; }); } function clearAppErr(el) { el.style.borderColor = 'var(--lgrey)'; var err = document.getElementById('app-err'); if(err) err.textContent = ''; } function submitApplication() { var errs = []; var req = [ {id:'app-fname', label:'First Name'}, {id:'app-lname', label:'Last Name'}, {id:'app-dob', label:'Date of Birth'}, {id:'app-phone', label:'Phone Number'}, {id:'app-email', label:'Email Address'}, {id:'app-addr', label:'Street Address'}, {id:'app-purpose',label:'Research Purpose'}, ]; req.forEach(function(r) { var el = document.getElementById(r.id); if(!el || !el.value.trim()) { errs.push(r.label); if(el) el.style.borderColor='rgba(224,80,80,.6)'; } }); if(!selectedType) { errs.push('Account Type'); var te = document.getElementById('type-err'); if(te) te.textContent = '✕ Please select an account type above'; } var npi = document.getElementById('app-npi'); var inst = document.getElementById('app-institution'); var reslic = document.getElementById('app-reslic'); var vetlic = document.getElementById('app-vetlic'); var code = document.getElementById('app-code'); if(selectedType==='physician' && npi && !npi.value.trim()) errs.push('NPI Number'); if(selectedType==='researcher' && inst && !inst.value.trim()) errs.push('Institution'); if(selectedType==='researcher' && reslic && !reslic.value.trim()) errs.push('Research Credentials'); if(selectedType==='veterinarian' && vetlic && !vetlic.value.trim()) errs.push('Veterinary License'); if(selectedType==='private' && code && !code.value.trim()) errs.push('Access Code'); var emailEl = document.getElementById('app-email'); if(emailEl && emailEl.value.trim() && !/\S+@\S+\.\S+/.test(emailEl.value)) { if(errs.indexOf('Email Address')===-1) errs.push('Valid Email Format'); emailEl.style.borderColor='rgba(224,80,80,.6)'; } if(errs.length) { var appErr = document.getElementById('app-err'); if(appErr) { appErr.textContent = '✕ Required: '+errs.slice(0,3).join(', ')+(errs.length>3?' + '+(errs.length-3)+' more':''); appErr.scrollIntoView({behavior:'smooth',block:'center'}); } return; } var credMap = { physician: (npi&&npi.value)||'', researcher: ((inst&&inst.value)||'')+' — '+((reslic&&reslic.value)||''), veterinarian: (vetlic&&vetlic.value)||'', private: (code&&code.value)||'' }; var fname = document.getElementById('app-fname'); var lname = document.getElementById('app-lname'); var formData = { 'First Name': fname?fname.value:'', 'Last Name': lname?lname.value:'', 'Email': emailEl?emailEl.value:'', 'Phone': (document.getElementById('app-phone')||{}).value||'', 'Date of Birth': (document.getElementById('app-dob')||{}).value||'', 'Address': ((document.getElementById('app-addr')||{}).value||'')+', '+((document.getElementById('app-city')||{}).value||'')+' '+((document.getElementById('app-state')||{}).value||'')+' '+((document.getElementById('app-zip')||{}).value||''), 'Account Type': selectedType, 'License / Credential': credMap[selectedType]||'', 'Research Purpose': (document.getElementById('app-purpose')||{}).value||'', '_subject': 'NEW True Wellness Account Application — '+((fname&&fname.value)||'')+' '+((lname&&lname.value)||''), '_replyto': emailEl?emailEl.value:'', }; fetch('https://formspree.io/f/mwvaqnzr', { method:'POST', headers:{'Content-Type':'application/json','Accept':'application/json'}, body:JSON.stringify(formData) }).catch(function(){}); // Enter site immediately var applyGate = document.getElementById('apply-gate'); var site = document.getElementById('site'); if(applyGate) applyGate.style.display='none'; if(site) { site.classList.add('visible'); // Save approved account to localStorage var fname = document.getElementById('app-fname'); var lname = document.getElementById('app-lname'); var emailEl2 = document.getElementById('app-email'); var stored = JSON.parse(localStorage.getItem('tw-accounts')||'[]'); var newAcct = { username: emailEl2?emailEl2.value.trim().toLowerCase():'', displayName: ((fname?fname.value:'')+' '+(lname?lname.value:'')).trim(), password: 'TrueWell2026!', // default — client should be told to change approved: true, ts: Date.now() }; // Only add if not already saved if(newAcct.username && !stored.find(function(a){return a.username===newAcct.username;})) { stored.push(newAcct); localStorage.setItem('tw-accounts', JSON.stringify(stored)); } if(typeof renderHomeProducts==='function') renderHomeProducts(); if(typeof renderShop==='function') renderShop(); if(typeof renderBundles==='function') renderBundles(); if(typeof renderPanels==='function') renderPanels('all'); } } // ── LOGIN SYSTEM ── function showLoginGate() { document.getElementById('login-gate').classList.add('visible'); } function showNewClientFlow() { document.getElementById('login-gate').classList.remove('visible'); document.getElementById('gate').classList.remove('hidden'); } function doLogin() { var user = (document.getElementById('login-user').value||'').trim().toLowerCase(); var pass = (document.getElementById('login-pass').value||'').trim(); var errEl = document.getElementById('login-err'); var loadEl = document.getElementById('login-loading'); if(!user||!pass){errEl.textContent='✕ Please enter your username and password.';return;} errEl.textContent=''; loadEl.style.display='block'; // Simulate brief auth delay setTimeout(function(){ loadEl.style.display='none'; var stored = JSON.parse(localStorage.getItem('tw-accounts')||'[]'); var acct = stored.find(function(a){return (a.username===user||a.username===user.replace('@',''))&&a.password===pass;}); if(acct) { localStorage.setItem('tw-session',JSON.stringify({user:acct.username,ts:Date.now()})); document.getElementById('login-gate').classList.remove('visible'); var site = document.getElementById('site'); if(site) { site.classList.add('visible'); if(typeof renderHomeProducts==='function') renderHomeProducts(); if(typeof renderShop==='function') renderShop(); if(typeof renderBundles==='function') renderBundles(); if(typeof renderPanels==='function') renderPanels('all'); } } else { errEl.textContent='✕ Invalid username or password. Please try again.'; } }, 700); } function signOut() { localStorage.removeItem('tw-session'); document.getElementById('site').classList.remove('visible'); showLoginGate(); } // Allow Enter key to submit login document.addEventListener('keydown', function(e){ if(e.key==='Enter' && document.getElementById('login-gate').classList.contains('visible')) doLogin(); }); // ── SHOW CORRECT SCREEN ON LOAD ── // Login is ALWAYS the first screen. // Returning clients with valid session skip straight to site. (function(){ var session = JSON.parse(localStorage.getItem('tw-session')||'null'); var TWO_WEEKS = 14*24*60*60*1000; if(session && (Date.now()-session.ts)21+ ONLY. This website contains information about research-grade compounds for licensed professionals only. If you are under 21, not a qualified researcher or physician, or seeking products for personal use — exit immediately.
TRUE WELLNESS RESEARCH · FOR AUTHORIZED RESEARCH PROFESSIONALS ONLY
Sign in if you have an approved account, or apply for access as a new client below.
First time here? You must review our disclaimer and submit a credential application before gaining access.
TRUE WELLNESS RESEARCH · AUTHORIZED PROFESSIONALS ONLY · FOR RESEARCH USE ONLY
Know Your Biology First.
True Wellness Research offers a luxury, biomarker-guided approach to peptide research. Our advanced panels determine compatibility, safety, and alignment before any compound is ever explored. Precision over hype — always.
A biomarker-first approach to precision research. Every access decision starts with biology, not guesswork.
Advanced biomarker panels through AccessMedLab determine compatibility and readiness. Revenue generated here before any peptide is purchased.
Medical history, family history, medications. Lab results uploaded. AI platform generates personalized compatibility overview — what to explore, what to avoid.
Three verified pathways: Licensed physician, licensed veterinarian, or invite-only access code from an existing member. No anonymous purchases — ever.
FDA Advisory Meeting — July 2026
The FDA is actively reviewing BPC-157, TB-500, Sermorelin, and 4 other peptides for deregulation under RFK Jr.'s MAHA initiative. True Wellness is positioned, built, and ready.
A biomarker-first approach to precision research. No other platform in this industry requires this level of due diligence before compound access. This is how we protect our clients — and ourselves.
No anonymous access. Ever. Three pathways to a True Wellness account:
Pathway 1 — Physician: NPI number required, verified against national registry. Licensed MD, DO, NP, or PA.
Pathway 2 — Veterinary: Licensed veterinarian or equine association membership number. For equine research compounds only.
Pathway 3 — Invite-Only: Access code from an existing verified member. New applicant still completes all disclaimers and intake. Exclusivity creates demand.
Every research access journey begins with a biomarker panel through our AccessMedLab partnership. Choose from at-home BioBox collection kits or in-lab testing. Results in 24–48 hours. This creates a documented safety record before any compound ships. No other peptide platform requires this level of due diligence.
Comprehensive medical intake form: personal history, family history, current medications, contraindications, allergies. Lab results uploaded. AI platform generates a personalized compound compatibility overview — showing what research areas to explore and what to avoid. True Wellness provides zero dosing, mixing, or administration guidance at any point.
Post-verification access to the full catalog. Every compound tested by Freedom Diagnostics for purity, sterility, potency, and absence of toxins. 8 categories: Metabolic, Growth Hormone, Muscle, Healing, Cognitive, Hormones, Aesthetics, Longevity. Equine-specific compounds labeled for veterinary research only.
Peptide Playbook — Coming Soon. An independent educational reference platform featuring vetted professionals sharing research overviews, compound walkthroughs, and biomarker-based exploration content. True Wellness Research does not provide dosing, mixing, or administration guidance. Peptide Playbook will be an independent resource where the research community shares knowledge and experiences — completely separate from True Wellness. Stay tuned.
Peptides are not one-size-fits-all. Biomarkers help identify risk, compatibility, and alignment before research begins — because informed exploration matters. A client who knows their IGF-1 levels, hormonal baseline, and metabolic markers is a client who can make intelligent research decisions. We help them get there.
Every True Wellness research journey begins with a biomarker panel. Powered by AccessMedLab BioBox™ — at-home collection, 24–48 hour results, CLIA/CAP certified lab. Know your biology before you research.
Collect at home with a simple fingerstick — less than 1ml of blood. Kit ships to your door in 2 days. Results in 24–48 hours delivered to your secure portal. All-inclusive pricing covers device, shipping, and testing. CLIA/CAP certified laboratory.
Precision · Purity · Performance · For Research Use Only
Professional-grade electric cooling cases engineered for temperature-sensitive research compounds. TSA approved. Maintains precise 35–68°F temperature range. Never compromise your compounds in transit.
Research-grade compounds are sensitive to temperature fluctuation. Improper storage can degrade compound integrity within hours. This electric cooler maintains precise temperature ranges required for lyophilized and reconstituted research compounds whether you're traveling, in the field, or between lab sessions.
Researchers who need reliable, compact temperature-controlled storage for daily use. Holds up to 7 research vials. Perfect for local transport, clinic visits, and short-duration field research where a full power bank isn't required.
All research compound orders ship in temperature-appropriate insulated packaging. Shipping rates are calculated at checkout based on order weight, destination, and selected carrier. Free USPS Ground on all orders over $150. For time-sensitive or large orders, we recommend FedEx 2Day or Overnight options.
Full legal disclosures, privacy policy, and research use disclaimers for True Wellness Research LLC.
For Veterinary Research Use Only. All equine products are research-grade compounds intended exclusively for licensed veterinarians, equine researchers, and authorized laboratory personnel. These compounds are not approved veterinary drugs. Not for human use. Not for use in animals outside of approved research protocols. Consult a licensed equine veterinarian before any research application.
The equine performance industry is one of the most active areas of peptide research in the world — yet it remains dramatically underserved by compliant, professional-grade suppliers. Thoroughbred racing, barrel racing, show jumping, and sport horse disciplines all share a common challenge: musculoskeletal injury recovery takes horses out of competition for months.
TB-500 (Thymosin Beta-4) has been studied in equine recovery contexts for decades and is among the most established peptide research compounds in veterinary medicine. BPC-157 and GHK-CU are increasingly explored in equine soft tissue, tendon, and wound healing research protocols.
True Wellness Research is the first platform to offer these compounds with professional-grade credentials: third-party tested by Freedom Diagnostics, veterinary account verification required, and complete compliance documentation on every order.
Equine research access requires a valid veterinary license number or equine association membership number. All equine compounds are clearly labeled for veterinary research use only and are shipped with full CoA documentation.
The following compounds are among the most actively researched in equine performance and recovery contexts. All information below reflects published research literature only — True Wellness provides no therapeutic guidance.
TB-500 has decades of history in equine sports medicine research. Veterinary literature documents measurable outcomes in thoroughbred recovery protocols. The most established peptide research compound in the equine space.
BPC-157 is also under FDA review for July 2026 deregulation — one of the most studied compounds in the True Wellness catalog. Growing equine research interest in soft tissue and musculoskeletal injury models.
GHK-CU is increasingly studied in equine wound healing and coat health protocols. Its collagen synthesis and tissue regeneration research applications make it highly relevant for sport horse recovery research.
The foundational equine research stack combining TB-500's systemic actin regulation with BPC-157's localized tissue repair mechanisms. These two compounds work through complementary pathways — studied extensively for synergistic effects in soft tissue recovery models.
The elite triple-compound equine research stack. Adds GHK-CU's collagen synthesis and tissue regeneration research profile to the JAWS REPAIR foundation. Three complementary mechanisms studied across the full spectrum of equine soft tissue, wound healing, and recovery research.
Licensed DVMs conducting research on performance horse recovery, injury rehabilitation, and regenerative protocols. Valid veterinary license required for account access.
University and private laboratory researchers studying peptide mechanisms in equine models. Credentialed institutional affiliation or equine association membership number required.
Performance barns, racing stables, and competitive facilities with licensed veterinary oversight conducting compound research under professional supervision. Vet license required.
To access equine research compounds, your account must include a valid veterinary license number or equine association membership number. All equine orders are labeled for veterinary research use only, shipped with CoA documentation, and are subject to the same 6-layer compliance process as all True Wellness research products. We do not provide dosing, administration, or mixing guidance for any equine research application.
By completing this purchase I confirm: These products are for research use only. Not for human consumption. Not for therapeutic application. I assume full legal responsibility for research use. I am a verified, credentialed researcher or licensed professional.
✓ Free USPS Ground on orders $150+
✓ Ships within 1–2 business days
✓ Temperature-appropriate packaging
✓ Discreet, professional packaging
🍎 Apple Pay: (928) 258-1614
💜 Zelle: (928) 258-1614
💙 Venmo: @tmhealthwellness
YOUR ORDER
0 ITEMS
NO ITEMS YET