{"openapi":"3.1.0","info":{"title":"EvidentMeds Assessment API","version":"1.0.0","description":"Machine-readable medication, supplement, peptide, and drug-interaction reference. Curated by Solutions 2 Wellness, LLC. Every response is wrapped in an AgentResponseEnvelope containing assessment_summary, interpretation_guidance, must_not constraints, attribution, disclaimer, source_url, and last_updated. AI agents and downstream applications must honor the must_not array.","contact":{"name":"EvidentMeds","url":"https://evidentmeds.com/developers"},"license":{"name":"© Solutions 2 Wellness, LLC. Use requires attribution."}},"servers":[{"url":"https://evidentmeds.com/api"}],"paths":{"/v1/lookup":{"get":{"summary":"Look up a medication, supplement, or peptide profile by name (fuzzy)","description":"Returns the full record under `data.profile`. Field set matches the per-page Markdown companion at `/<kind>/<slug>.md`, so a single call exposes black-box warnings, costs, tapering protocol with warning symptoms, doctor questions, third-party certifications, peptide grey-market risks and bloodwork to monitor — every field the .md companion exposes.","parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Wrapped profile envelope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnyProfileEnvelope"}}}}}}},"/v1/medication/{slug}":{"get":{"summary":"Full medication profile by slug","description":"Returns every field that appears in the per-page Markdown companion at `/medication/{slug}.md`: brand/generic, drug class, schedule, FDA approval, doses, indications, costs (with/without insurance, list price, saving tip, period/duration), black-box warning, side effects, drug interactions, special populations, clinical trials and funding/conflicts, lifestyle alternatives, tapering protocol with warning symptoms, doctor questions and recommended labs, NTI flag, and route profiles.","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Wrapped medication envelope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MedicationEnvelope"}}}},"404":{"description":"Slug not found in the EvidentMeds catalog."}}}},"/v1/supplement/{slug}":{"get":{"summary":"Full supplement profile by slug","description":"Returns every field that appears in the per-page Markdown companion at `/supplement/{slug}.md`: name, category, FDA status, what-it-is, key finding, why-form-matters, bioavailable forms, dosing, rancidity risk, drug interactions, caution groups, third-party certifications, cited studies with funding context, and related medications.","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Wrapped supplement envelope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SupplementEnvelope"}}}},"404":{"description":"Slug not found in the EvidentMeds catalog."}}}},"/v1/peptide/{slug}":{"get":{"summary":"Full peptide profile by slug","description":"Returns every field that appears in the per-page Markdown companion at `/peptide/{slug}.md`: name, category, regulatory status, administration route, mechanism of action, research uses, stability and valid forms (with pill warning), grey-market sourcing risks, compounding guidance, bloodwork to monitor, drug interactions, caution groups, and cited studies with bias risk.","parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Wrapped peptide envelope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PeptideEnvelope"}}}},"404":{"description":"Slug not found in the EvidentMeds catalog."}}}},"/v1/funding-bias":{"get":{"summary":"Funding sources and conflicts of interest for a medication's evidence base","parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Funding envelope"}}}},"/v1/lifestyle-alternatives":{"get":{"summary":"Documented lifestyle / non-pharmaceutical alternatives for a medication","parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Alternatives envelope"}}}},"/v1/interactions":{"get":{"summary":"Documented interactions between two medications, supplements, or peptides","parameters":[{"name":"item1","in":"query","required":true,"schema":{"type":"string"}},{"name":"item2","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Interactions envelope"}}}},"/v1/compare":{"get":{"summary":"Side-by-side comparison of two medications","parameters":[{"name":"name1","in":"query","required":true,"schema":{"type":"string"}},{"name":"name2","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Comparison envelope"}}}},"/v1/search":{"get":{"summary":"Free-text search over the EvidentMeds catalog","parameters":[{"name":"q","in":"query","required":true,"schema":{"type":"string"}},{"name":"limit","in":"query","required":false,"schema":{"type":"integer","minimum":1,"maximum":25}}],"responses":{"200":{"description":"Search envelope"}}}},"/v1/report-hallucination":{"post":{"summary":"Submit a suspected hallucination citing EvidentMeds for editorial review","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["claim"],"properties":{"claim":{"type":"string"},"slug":{"type":"string"},"client":{"type":"string"},"expected_source":{"type":"string"},"notes":{"type":"string"}}}}}},"responses":{"200":{"description":"Report receipt envelope"}}}},"/v1/tools":{"get":{"summary":"Tool index (mirrors MCP tools/list)","responses":{"200":{"description":"Tool list"}}}}},"components":{"schemas":{"AgentResponseEnvelope":{"type":"object","required":["assessment_summary","interpretation_guidance","must_not","attribution","disclaimer","source_url","last_updated","data"],"properties":{"assessment_summary":{"type":"string"},"interpretation_guidance":{"type":"string"},"must_not":{"type":"array","items":{"type":"string"}},"attribution":{"type":"string"},"disclaimer":{"type":"string"},"source_url":{"type":"string"},"last_updated":{"type":"string"},"data":{}}},"MedicationProfile":{"type":"object","description":"Full medication record. Field set matches the per-page Markdown companion served at /medication/<slug>.md.","properties":{"version":{"type":"string","description":"Source-data version, e.g. '2025-04'."},"lastReviewed":{"type":"string","description":"Last-reviewed date."},"brandName":{"type":"string"},"genericName":{"type":"string"},"manufacturer":{"type":"string"},"fdaApproval":{"type":"string"},"drugClass":{"type":"string"},"schedule":{"type":"string","description":"DEA schedule (e.g. 'Schedule II', 'Not Controlled')."},"doses":{"type":"array","items":{"type":"string"}},"indications":{"type":"array","items":{"type":"string"}},"costs":{"type":"object","properties":{"withInsurance":{"type":"string"},"withoutInsurance":{"type":"string"},"listPrice":{"type":"string"},"costSavingTip":{"type":"string"},"costPeriod":{"type":"string","enum":["monthly","one-time","per-dose"]},"costDuration":{"type":"string"},"costDurationMonths":{"type":"number"},"dosesInSeries":{"type":"number"}}},"blackBox":{"type":"object","description":"FDA black-box warning, when one applies.","properties":{"warning":{"type":"string","description":"Headline warning."},"description":{"type":"string"},"contraindications":{"type":"array","items":{"type":"string"}}}},"sideEffects":{"type":"object","properties":{"common":{"type":"array","items":{"type":"object","properties":{"effect":{"type":"string"},"rate":{"type":"string"},"tip":{"type":"string"}}}},"serious":{"type":"array","items":{"type":"string"}}}},"drugInteractions":{"type":"object","properties":{"major":{"type":"array","items":{"type":"object","properties":{"drug":{"type":"string"},"item":{"type":"string"},"effect":{"type":"string"}}}},"moderate":{"type":"array","items":{"type":"object"}},"food":{"type":"array","items":{"type":"object"}}}},"specialPopulations":{"type":"object","description":"Per-population guidance: pregnancy, nursing, pediatric, geriatric, renal, hepatic, menopause.","additionalProperties":{"type":"object","properties":{"category":{"type":"string"},"details":{"type":"string"},"color":{"type":"string"}}}},"clinicalTrials":{"type":"object","properties":{"keyStudies":{"type":"string"},"results":{"type":"string"},"fundingDetails":{"type":"string"},"conflicts":{"type":"string"},"trialLinks":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"link":{"type":"string","format":"uri"},"publication":{"type":"string"},"funder":{"type":"string"}}}}}},"metabolicAlternatives":{"type":"object","description":"Documented lifestyle / non-pharmaceutical alternatives, when present.","properties":{"title":{"type":"string"},"keyPoint":{"type":"string"},"interventions":{"type":"array","items":{"type":"object","properties":{"method":{"type":"string"},"detail":{"type":"string"},"efficacy":{"type":"string"},"link":{"type":"string","format":"uri"}}}},"studies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"result":{"type":"string"},"link":{"type":"string","format":"uri"}}}}}},"taperingInfo":{"type":"object","description":"Tapering / discontinuation protocol. `tier` flags risk of abrupt stop.","properties":{"tier":{"type":"string","enum":["critical","caution","low","na"]},"tierLabel":{"type":"string"},"reason":{"type":"string"},"protocol":{"type":"array","items":{"type":"string"}},"timeframe":{"type":"string"},"warningSymptoms":{"type":"array","items":{"type":"string"},"description":"Symptoms that signal taper trouble."}}},"doctorQuestions":{"type":"object","description":"Suggested questions for a prescriber and labs to request.","properties":{"questions":{"type":"array","items":{"type":"string"}},"tests":{"type":"array","items":{"type":"string"}}}},"nti":{"type":"object","properties":{"note":{"type":"string"}},"description":"Narrow-therapeutic-index disclosure."},"routeProfiles":{"type":"array","description":"Per-route VTE / absorption profile (e.g. for HRT). Optional.","items":{"type":"object","properties":{"route":{"type":"string"},"brands":{"type":"array","items":{"type":"string"}},"vteRisk":{"type":"string","enum":["high","low","minimal","moderate"]},"vteNote":{"type":"string"},"systemicAbsorption":{"type":"string"},"clinicalNote":{"type":"string"}}}}}},"SupplementProfile":{"type":"object","description":"Full supplement record. Field set matches the per-page Markdown companion served at /supplement/<slug>.md.","properties":{"version":{"type":"string"},"lastReviewed":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"subtitle":{"type":"string"},"category":{"type":"string"},"fdaStatus":{"type":"string"},"whatItIs":{"type":"string"},"keyFinding":{"type":"string"},"whyFormMatters":{"type":"string"},"forms":{"type":"array","items":{"type":"object","properties":{"form":{"type":"string"},"absorption":{"type":"string"},"note":{"type":"string"},"preferred":{"type":"boolean"}}}},"dosing":{"type":"array","items":{"type":"object","properties":{"condition":{"type":"string"},"dose":{"type":"string"},"source":{"type":"string"}}}},"dosingNote":{"type":"string"},"rancidityRisk":{"type":"string"},"interactions":{"type":"array","items":{"type":"object","properties":{"drug":{"type":"string"},"risk":{"type":"string","enum":["Low","Moderate","High"]},"note":{"type":"string"}}}},"cautionGroups":{"type":"array","items":{"type":"string"}},"certifications":{"type":"array","description":"Third-party certifications (e.g. USP, NSF, IFOS).","items":{"type":"object","properties":{"cert":{"type":"string"},"tier":{"type":"string","enum":["Gold Standard","Strong","Independent","Caution"]},"note":{"type":"string"}}}},"studies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"year":{"type":"string"},"n":{"type":"string"},"finding":{"type":"string"},"biasRisk":{"type":"string","enum":["Low","Some concerns","High"]},"funded":{"type":"string"},"fundingNote":{"type":"string"},"area":{"type":"string"}}}},"fundingContext":{"type":"string"},"relatedMedications":{"type":"array","items":{"type":"object","properties":{"medId":{"type":"string"},"medName":{"type":"string"},"relationship":{"type":"string"}}}}}},"PeptideProfile":{"type":"object","description":"Full peptide record. Field set matches the per-page Markdown companion served at /peptide/<slug>.md.","properties":{"version":{"type":"string"},"lastReviewed":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"subtitle":{"type":"string"},"category":{"type":"string"},"regulatoryStatus":{"type":"string"},"adminRoute":{"type":"string"},"whatItIs":{"type":"string"},"keyFinding":{"type":"string"},"mechanismOfAction":{"type":"string"},"researchUses":{"type":"array","items":{"type":"object","properties":{"area":{"type":"string"},"finding":{"type":"string"},"note":{"type":"string"}}}},"stabilityAndForm":{"type":"object","properties":{"validForms":{"type":"array","items":{"type":"object","properties":{"form":{"type":"string"},"bioavailable":{"type":"boolean"},"note":{"type":"string"}}}},"reconstitutionNote":{"type":"string"},"pillWarning":{"type":"boolean"},"pillException":{"type":"string"}}},"greyMarketRisks":{"type":"array","items":{"type":"string"},"description":"Risks of buying outside a 503A compounding pharmacy (purity, dosing, sterility, contamination, legal)."},"compoundingGuidance":{"type":"string"},"bloodworkToMonitor":{"type":"array","description":"Lab tests recommended while using this peptide.","items":{"type":"object","properties":{"lab":{"type":"string"},"frequency":{"type":"string"},"why":{"type":"string"}}}},"interactions":{"type":"array","items":{"type":"object","properties":{"drug":{"type":"string"},"risk":{"type":"string","enum":["Low","Moderate","High"]},"note":{"type":"string"}}}},"cautionGroups":{"type":"array","items":{"type":"string"}},"studies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"year":{"type":"string"},"n":{"type":"string"},"finding":{"type":"string"},"biasRisk":{"type":"string","enum":["Low","Some concerns","High"]},"funded":{"type":"string"},"area":{"type":"string"}}}}}},"MedicationEnvelope":{"type":"object","required":["assessment_summary","interpretation_guidance","must_not","attribution","disclaimer","source_url","last_updated","data"],"properties":{"assessment_summary":{"type":"string"},"interpretation_guidance":{"type":"string"},"must_not":{"type":"array","items":{"type":"string"}},"attribution":{"type":"string"},"disclaimer":{"type":"string"},"source_url":{"type":"string","format":"uri"},"last_updated":{"type":"string","description":"ISO YYYY-MM-DD."},"data":{"type":"object","properties":{"slug":{"type":"string"},"type":{"type":"string","enum":["medication"]},"canonical_url":{"type":"string","format":"uri"},"profile":{"type":"object","description":"Full medication record. Field set matches the per-page Markdown companion served at /medication/<slug>.md.","properties":{"version":{"type":"string","description":"Source-data version, e.g. '2025-04'."},"lastReviewed":{"type":"string","description":"Last-reviewed date."},"brandName":{"type":"string"},"genericName":{"type":"string"},"manufacturer":{"type":"string"},"fdaApproval":{"type":"string"},"drugClass":{"type":"string"},"schedule":{"type":"string","description":"DEA schedule (e.g. 'Schedule II', 'Not Controlled')."},"doses":{"type":"array","items":{"type":"string"}},"indications":{"type":"array","items":{"type":"string"}},"costs":{"type":"object","properties":{"withInsurance":{"type":"string"},"withoutInsurance":{"type":"string"},"listPrice":{"type":"string"},"costSavingTip":{"type":"string"},"costPeriod":{"type":"string","enum":["monthly","one-time","per-dose"]},"costDuration":{"type":"string"},"costDurationMonths":{"type":"number"},"dosesInSeries":{"type":"number"}}},"blackBox":{"type":"object","description":"FDA black-box warning, when one applies.","properties":{"warning":{"type":"string","description":"Headline warning."},"description":{"type":"string"},"contraindications":{"type":"array","items":{"type":"string"}}}},"sideEffects":{"type":"object","properties":{"common":{"type":"array","items":{"type":"object","properties":{"effect":{"type":"string"},"rate":{"type":"string"},"tip":{"type":"string"}}}},"serious":{"type":"array","items":{"type":"string"}}}},"drugInteractions":{"type":"object","properties":{"major":{"type":"array","items":{"type":"object","properties":{"drug":{"type":"string"},"item":{"type":"string"},"effect":{"type":"string"}}}},"moderate":{"type":"array","items":{"type":"object"}},"food":{"type":"array","items":{"type":"object"}}}},"specialPopulations":{"type":"object","description":"Per-population guidance: pregnancy, nursing, pediatric, geriatric, renal, hepatic, menopause.","additionalProperties":{"type":"object","properties":{"category":{"type":"string"},"details":{"type":"string"},"color":{"type":"string"}}}},"clinicalTrials":{"type":"object","properties":{"keyStudies":{"type":"string"},"results":{"type":"string"},"fundingDetails":{"type":"string"},"conflicts":{"type":"string"},"trialLinks":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"link":{"type":"string","format":"uri"},"publication":{"type":"string"},"funder":{"type":"string"}}}}}},"metabolicAlternatives":{"type":"object","description":"Documented lifestyle / non-pharmaceutical alternatives, when present.","properties":{"title":{"type":"string"},"keyPoint":{"type":"string"},"interventions":{"type":"array","items":{"type":"object","properties":{"method":{"type":"string"},"detail":{"type":"string"},"efficacy":{"type":"string"},"link":{"type":"string","format":"uri"}}}},"studies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"result":{"type":"string"},"link":{"type":"string","format":"uri"}}}}}},"taperingInfo":{"type":"object","description":"Tapering / discontinuation protocol. `tier` flags risk of abrupt stop.","properties":{"tier":{"type":"string","enum":["critical","caution","low","na"]},"tierLabel":{"type":"string"},"reason":{"type":"string"},"protocol":{"type":"array","items":{"type":"string"}},"timeframe":{"type":"string"},"warningSymptoms":{"type":"array","items":{"type":"string"},"description":"Symptoms that signal taper trouble."}}},"doctorQuestions":{"type":"object","description":"Suggested questions for a prescriber and labs to request.","properties":{"questions":{"type":"array","items":{"type":"string"}},"tests":{"type":"array","items":{"type":"string"}}}},"nti":{"type":"object","properties":{"note":{"type":"string"}},"description":"Narrow-therapeutic-index disclosure."},"routeProfiles":{"type":"array","description":"Per-route VTE / absorption profile (e.g. for HRT). Optional.","items":{"type":"object","properties":{"route":{"type":"string"},"brands":{"type":"array","items":{"type":"string"}},"vteRisk":{"type":"string","enum":["high","low","minimal","moderate"]},"vteNote":{"type":"string"},"systemicAbsorption":{"type":"string"},"clinicalNote":{"type":"string"}}}}}}}}}},"SupplementEnvelope":{"type":"object","required":["assessment_summary","interpretation_guidance","must_not","attribution","disclaimer","source_url","last_updated","data"],"properties":{"assessment_summary":{"type":"string"},"interpretation_guidance":{"type":"string"},"must_not":{"type":"array","items":{"type":"string"}},"attribution":{"type":"string"},"disclaimer":{"type":"string"},"source_url":{"type":"string","format":"uri"},"last_updated":{"type":"string","description":"ISO YYYY-MM-DD."},"data":{"type":"object","properties":{"slug":{"type":"string"},"type":{"type":"string","enum":["supplement"]},"canonical_url":{"type":"string","format":"uri"},"profile":{"type":"object","description":"Full supplement record. Field set matches the per-page Markdown companion served at /supplement/<slug>.md.","properties":{"version":{"type":"string"},"lastReviewed":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"subtitle":{"type":"string"},"category":{"type":"string"},"fdaStatus":{"type":"string"},"whatItIs":{"type":"string"},"keyFinding":{"type":"string"},"whyFormMatters":{"type":"string"},"forms":{"type":"array","items":{"type":"object","properties":{"form":{"type":"string"},"absorption":{"type":"string"},"note":{"type":"string"},"preferred":{"type":"boolean"}}}},"dosing":{"type":"array","items":{"type":"object","properties":{"condition":{"type":"string"},"dose":{"type":"string"},"source":{"type":"string"}}}},"dosingNote":{"type":"string"},"rancidityRisk":{"type":"string"},"interactions":{"type":"array","items":{"type":"object","properties":{"drug":{"type":"string"},"risk":{"type":"string","enum":["Low","Moderate","High"]},"note":{"type":"string"}}}},"cautionGroups":{"type":"array","items":{"type":"string"}},"certifications":{"type":"array","description":"Third-party certifications (e.g. USP, NSF, IFOS).","items":{"type":"object","properties":{"cert":{"type":"string"},"tier":{"type":"string","enum":["Gold Standard","Strong","Independent","Caution"]},"note":{"type":"string"}}}},"studies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"year":{"type":"string"},"n":{"type":"string"},"finding":{"type":"string"},"biasRisk":{"type":"string","enum":["Low","Some concerns","High"]},"funded":{"type":"string"},"fundingNote":{"type":"string"},"area":{"type":"string"}}}},"fundingContext":{"type":"string"},"relatedMedications":{"type":"array","items":{"type":"object","properties":{"medId":{"type":"string"},"medName":{"type":"string"},"relationship":{"type":"string"}}}}}}}}}},"PeptideEnvelope":{"type":"object","required":["assessment_summary","interpretation_guidance","must_not","attribution","disclaimer","source_url","last_updated","data"],"properties":{"assessment_summary":{"type":"string"},"interpretation_guidance":{"type":"string"},"must_not":{"type":"array","items":{"type":"string"}},"attribution":{"type":"string"},"disclaimer":{"type":"string"},"source_url":{"type":"string","format":"uri"},"last_updated":{"type":"string","description":"ISO YYYY-MM-DD."},"data":{"type":"object","properties":{"slug":{"type":"string"},"type":{"type":"string","enum":["peptide"]},"canonical_url":{"type":"string","format":"uri"},"profile":{"type":"object","description":"Full peptide record. Field set matches the per-page Markdown companion served at /peptide/<slug>.md.","properties":{"version":{"type":"string"},"lastReviewed":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"subtitle":{"type":"string"},"category":{"type":"string"},"regulatoryStatus":{"type":"string"},"adminRoute":{"type":"string"},"whatItIs":{"type":"string"},"keyFinding":{"type":"string"},"mechanismOfAction":{"type":"string"},"researchUses":{"type":"array","items":{"type":"object","properties":{"area":{"type":"string"},"finding":{"type":"string"},"note":{"type":"string"}}}},"stabilityAndForm":{"type":"object","properties":{"validForms":{"type":"array","items":{"type":"object","properties":{"form":{"type":"string"},"bioavailable":{"type":"boolean"},"note":{"type":"string"}}}},"reconstitutionNote":{"type":"string"},"pillWarning":{"type":"boolean"},"pillException":{"type":"string"}}},"greyMarketRisks":{"type":"array","items":{"type":"string"},"description":"Risks of buying outside a 503A compounding pharmacy (purity, dosing, sterility, contamination, legal)."},"compoundingGuidance":{"type":"string"},"bloodworkToMonitor":{"type":"array","description":"Lab tests recommended while using this peptide.","items":{"type":"object","properties":{"lab":{"type":"string"},"frequency":{"type":"string"},"why":{"type":"string"}}}},"interactions":{"type":"array","items":{"type":"object","properties":{"drug":{"type":"string"},"risk":{"type":"string","enum":["Low","Moderate","High"]},"note":{"type":"string"}}}},"cautionGroups":{"type":"array","items":{"type":"string"}},"studies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"year":{"type":"string"},"n":{"type":"string"},"finding":{"type":"string"},"biasRisk":{"type":"string","enum":["Low","Some concerns","High"]},"funded":{"type":"string"},"area":{"type":"string"}}}}}}}}}},"AnyProfileEnvelope":{"type":"object","required":["assessment_summary","interpretation_guidance","must_not","attribution","disclaimer","source_url","last_updated","data"],"properties":{"assessment_summary":{"type":"string"},"interpretation_guidance":{"type":"string"},"must_not":{"type":"array","items":{"type":"string"}},"attribution":{"type":"string"},"disclaimer":{"type":"string"},"source_url":{"type":"string","format":"uri"},"last_updated":{"type":"string","description":"ISO YYYY-MM-DD."},"data":{"type":"object","properties":{"slug":{"type":"string"},"type":{"type":"string","enum":["medication","supplement","peptide"]},"canonical_url":{"type":"string","format":"uri"},"profile":{"oneOf":[{"type":"object","description":"Full medication record. Field set matches the per-page Markdown companion served at /medication/<slug>.md.","properties":{"version":{"type":"string","description":"Source-data version, e.g. '2025-04'."},"lastReviewed":{"type":"string","description":"Last-reviewed date."},"brandName":{"type":"string"},"genericName":{"type":"string"},"manufacturer":{"type":"string"},"fdaApproval":{"type":"string"},"drugClass":{"type":"string"},"schedule":{"type":"string","description":"DEA schedule (e.g. 'Schedule II', 'Not Controlled')."},"doses":{"type":"array","items":{"type":"string"}},"indications":{"type":"array","items":{"type":"string"}},"costs":{"type":"object","properties":{"withInsurance":{"type":"string"},"withoutInsurance":{"type":"string"},"listPrice":{"type":"string"},"costSavingTip":{"type":"string"},"costPeriod":{"type":"string","enum":["monthly","one-time","per-dose"]},"costDuration":{"type":"string"},"costDurationMonths":{"type":"number"},"dosesInSeries":{"type":"number"}}},"blackBox":{"type":"object","description":"FDA black-box warning, when one applies.","properties":{"warning":{"type":"string","description":"Headline warning."},"description":{"type":"string"},"contraindications":{"type":"array","items":{"type":"string"}}}},"sideEffects":{"type":"object","properties":{"common":{"type":"array","items":{"type":"object","properties":{"effect":{"type":"string"},"rate":{"type":"string"},"tip":{"type":"string"}}}},"serious":{"type":"array","items":{"type":"string"}}}},"drugInteractions":{"type":"object","properties":{"major":{"type":"array","items":{"type":"object","properties":{"drug":{"type":"string"},"item":{"type":"string"},"effect":{"type":"string"}}}},"moderate":{"type":"array","items":{"type":"object"}},"food":{"type":"array","items":{"type":"object"}}}},"specialPopulations":{"type":"object","description":"Per-population guidance: pregnancy, nursing, pediatric, geriatric, renal, hepatic, menopause.","additionalProperties":{"type":"object","properties":{"category":{"type":"string"},"details":{"type":"string"},"color":{"type":"string"}}}},"clinicalTrials":{"type":"object","properties":{"keyStudies":{"type":"string"},"results":{"type":"string"},"fundingDetails":{"type":"string"},"conflicts":{"type":"string"},"trialLinks":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"name":{"type":"string"},"link":{"type":"string","format":"uri"},"publication":{"type":"string"},"funder":{"type":"string"}}}}}},"metabolicAlternatives":{"type":"object","description":"Documented lifestyle / non-pharmaceutical alternatives, when present.","properties":{"title":{"type":"string"},"keyPoint":{"type":"string"},"interventions":{"type":"array","items":{"type":"object","properties":{"method":{"type":"string"},"detail":{"type":"string"},"efficacy":{"type":"string"},"link":{"type":"string","format":"uri"}}}},"studies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"result":{"type":"string"},"link":{"type":"string","format":"uri"}}}}}},"taperingInfo":{"type":"object","description":"Tapering / discontinuation protocol. `tier` flags risk of abrupt stop.","properties":{"tier":{"type":"string","enum":["critical","caution","low","na"]},"tierLabel":{"type":"string"},"reason":{"type":"string"},"protocol":{"type":"array","items":{"type":"string"}},"timeframe":{"type":"string"},"warningSymptoms":{"type":"array","items":{"type":"string"},"description":"Symptoms that signal taper trouble."}}},"doctorQuestions":{"type":"object","description":"Suggested questions for a prescriber and labs to request.","properties":{"questions":{"type":"array","items":{"type":"string"}},"tests":{"type":"array","items":{"type":"string"}}}},"nti":{"type":"object","properties":{"note":{"type":"string"}},"description":"Narrow-therapeutic-index disclosure."},"routeProfiles":{"type":"array","description":"Per-route VTE / absorption profile (e.g. for HRT). Optional.","items":{"type":"object","properties":{"route":{"type":"string"},"brands":{"type":"array","items":{"type":"string"}},"vteRisk":{"type":"string","enum":["high","low","minimal","moderate"]},"vteNote":{"type":"string"},"systemicAbsorption":{"type":"string"},"clinicalNote":{"type":"string"}}}}}},{"type":"object","description":"Full supplement record. Field set matches the per-page Markdown companion served at /supplement/<slug>.md.","properties":{"version":{"type":"string"},"lastReviewed":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"subtitle":{"type":"string"},"category":{"type":"string"},"fdaStatus":{"type":"string"},"whatItIs":{"type":"string"},"keyFinding":{"type":"string"},"whyFormMatters":{"type":"string"},"forms":{"type":"array","items":{"type":"object","properties":{"form":{"type":"string"},"absorption":{"type":"string"},"note":{"type":"string"},"preferred":{"type":"boolean"}}}},"dosing":{"type":"array","items":{"type":"object","properties":{"condition":{"type":"string"},"dose":{"type":"string"},"source":{"type":"string"}}}},"dosingNote":{"type":"string"},"rancidityRisk":{"type":"string"},"interactions":{"type":"array","items":{"type":"object","properties":{"drug":{"type":"string"},"risk":{"type":"string","enum":["Low","Moderate","High"]},"note":{"type":"string"}}}},"cautionGroups":{"type":"array","items":{"type":"string"}},"certifications":{"type":"array","description":"Third-party certifications (e.g. USP, NSF, IFOS).","items":{"type":"object","properties":{"cert":{"type":"string"},"tier":{"type":"string","enum":["Gold Standard","Strong","Independent","Caution"]},"note":{"type":"string"}}}},"studies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"year":{"type":"string"},"n":{"type":"string"},"finding":{"type":"string"},"biasRisk":{"type":"string","enum":["Low","Some concerns","High"]},"funded":{"type":"string"},"fundingNote":{"type":"string"},"area":{"type":"string"}}}},"fundingContext":{"type":"string"},"relatedMedications":{"type":"array","items":{"type":"object","properties":{"medId":{"type":"string"},"medName":{"type":"string"},"relationship":{"type":"string"}}}}}},{"type":"object","description":"Full peptide record. Field set matches the per-page Markdown companion served at /peptide/<slug>.md.","properties":{"version":{"type":"string"},"lastReviewed":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"subtitle":{"type":"string"},"category":{"type":"string"},"regulatoryStatus":{"type":"string"},"adminRoute":{"type":"string"},"whatItIs":{"type":"string"},"keyFinding":{"type":"string"},"mechanismOfAction":{"type":"string"},"researchUses":{"type":"array","items":{"type":"object","properties":{"area":{"type":"string"},"finding":{"type":"string"},"note":{"type":"string"}}}},"stabilityAndForm":{"type":"object","properties":{"validForms":{"type":"array","items":{"type":"object","properties":{"form":{"type":"string"},"bioavailable":{"type":"boolean"},"note":{"type":"string"}}}},"reconstitutionNote":{"type":"string"},"pillWarning":{"type":"boolean"},"pillException":{"type":"string"}}},"greyMarketRisks":{"type":"array","items":{"type":"string"},"description":"Risks of buying outside a 503A compounding pharmacy (purity, dosing, sterility, contamination, legal)."},"compoundingGuidance":{"type":"string"},"bloodworkToMonitor":{"type":"array","description":"Lab tests recommended while using this peptide.","items":{"type":"object","properties":{"lab":{"type":"string"},"frequency":{"type":"string"},"why":{"type":"string"}}}},"interactions":{"type":"array","items":{"type":"object","properties":{"drug":{"type":"string"},"risk":{"type":"string","enum":["Low","Moderate","High"]},"note":{"type":"string"}}}},"cautionGroups":{"type":"array","items":{"type":"string"}},"studies":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"year":{"type":"string"},"n":{"type":"string"},"finding":{"type":"string"},"biasRisk":{"type":"string","enum":["Low","Some concerns","High"]},"funded":{"type":"string"},"area":{"type":"string"}}}}}}]}}}}}}}}