# Hi-Doctor > Hi-Doctor is an online medical service for weight loss, hair growth and sexual health. Connect it to any AI assistant over MCP, or build on the REST API. ## Docs - [Get your profile](https://docs.hi-doctor.ai/api-reference/account/get-your-profile.md): The authenticated patient's own profile. - [List profiles](https://docs.hi-doctor.ai/api-reference/account/list-profiles.md): Self-scoped. - [Refresh the access token](https://docs.hi-doctor.ai/api-reference/account/refresh-the-access-token.md): Exchange a valid `refresh` token for a new `access` token. Access tokens are short-lived; refresh rather than storing the password. - [Register a new patient](https://docs.hi-doctor.ai/api-reference/account/register-a-new-patient.md): Starts a signup and emails a one-time code. Returns **200, not 201** — no account exists yet; the registration is held pending until the code is verified. - [Request a password reset](https://docs.hi-doctor.ai/api-reference/account/request-a-password-reset.md): Emails a reset link. Unauthenticated. Use this for an account created with Google sign-in that needs a password before it can use `/v1/users/token/`. - [Set a new password](https://docs.hi-doctor.ai/api-reference/account/set-a-new-password.md): Consumes the token from the reset email. Unauthenticated — the token is the credential. - [Sign in](https://docs.hi-doctor.ai/api-reference/account/sign-in.md): Exchange an email and password for an `access` and `refresh` token pair. - [Sign in with Google](https://docs.hi-doctor.ai/api-reference/account/sign-in-with-google.md): Sign in or sign up with a Google credential. - [Update profile](https://docs.hi-doctor.ai/api-reference/account/update-profile.md): Self-scoped partial update. - [Update your profile](https://docs.hi-doctor.ai/api-reference/account/update-your-profile.md): Partial update. Checkout requires a complete profile: if it refuses with `PROFILE_INCOMPLETE`, the response lists `missing_fields` — fill those and retry. The patient must be 18 or over and resident in a supported country. - [Verify the emailed code](https://docs.hi-doctor.ai/api-reference/account/verify-the-emailed-code.md): Consumes the one-time code from registration and activates the account. **The account cannot sign in until this succeeds** and there is no resend endpoint — to get a fresh code, register again with the same address. - [Authentication](https://docs.hi-doctor.ai/api-reference/authentication.md): Sign in with email and password, then call any patient endpoint with a bearer token. - [Cancel at the end of the period](https://docs.hi-doctor.ai/api-reference/billing/cancel-at-the-end-of-the-period.md): Schedules cancellation for the **end of the current paid period** — never immediately. Access continues until that date and can be undone with reactivate. Refused while an early-order lock is in place. - [Check a checkout session](https://docs.hi-doctor.ai/api-reference/billing/check-a-checkout-session.md): Returns the state of a Stripe checkout session. A paid session may finalise and create its consultation as a side effect of this call. - [Get your subscription](https://docs.hi-doctor.ai/api-reference/billing/get-your-subscription.md): The authenticated patient's current plan, including `current_period_end` and whether a cancellation is already scheduled. - [Open the Stripe billing portal](https://docs.hi-doctor.ai/api-reference/billing/open-the-stripe-billing-portal.md): Returns a Stripe-hosted URL where the patient changes card, plan or billing address. Hi-Doctor never sees card details. - [Pull the next renewal forward](https://docs.hi-doctor.ai/api-reference/billing/pull-the-next-renewal-forward.md): Creates the renewal consultation now instead of at the period end. - [Start checkout](https://docs.hi-doctor.ai/api-reference/billing/start-checkout.md): Creates a Stripe checkout session for a treatment, or returns an existing consultation already covered by an active plan. Refuses with `PROFILE_INCOMPLETE` if the profile is missing required fields. - [Undo a scheduled cancellation](https://docs.hi-doctor.ai/api-reference/billing/undo-a-scheduled-cancellation.md): Cancels a pending period-end cancellation so the plan keeps renewing. Returns `409 already_active` if nothing was scheduled. - [Get one consultation](https://docs.hi-doctor.ai/api-reference/consultations/get-one-consultation.md): A single consultation belonging to the authenticated patient. - [List your consultations](https://docs.hi-doctor.ai/api-reference/consultations/list-your-consultations.md): Consultations belonging to the authenticated patient, newest first. - [Errors](https://docs.hi-doctor.ai/api-reference/errors.md): Every error envelope the Hi-Doctor API returns, what each status code means, and whether to retry, re-authenticate or fix the input. - [API reference](https://docs.hi-doctor.ai/api-reference/introduction.md): The patient-facing Hi-Doctor REST API: sign in, complete a consultation, manage a plan, and track progress from your own code. - [Get unread counts](https://docs.hi-doctor.ai/api-reference/messages/get-unread-counts.md): Unread message counts for the patient. - [List messages](https://docs.hi-doctor.ai/api-reference/messages/list-messages.md): Messages in a conversation the patient owns. - [List your conversations](https://docs.hi-doctor.ai/api-reference/messages/list-your-conversations.md): Self-scoped. - [Mark as read](https://docs.hi-doctor.ai/api-reference/messages/mark-as-read.md): Marks the conversation read. - [Mark as unread](https://docs.hi-doctor.ai/api-reference/messages/mark-as-unread.md): Marks the conversation unread. - [Open your medical-team conversation](https://docs.hi-doctor.ai/api-reference/messages/open-your-medical-team-conversation.md): Gets or creates the patient's own thread with the medical team. - [Send a message](https://docs.hi-doctor.ai/api-reference/messages/send-a-message.md): Posts a message to the medical team. - [Download a prescription PDF](https://docs.hi-doctor.ai/api-reference/prescriptions/download-a-prescription-pdf.md): Returns the prescription document. - [List your prescriptions](https://docs.hi-doctor.ai/api-reference/prescriptions/list-your-prescriptions.md): Prescriptions issued to the authenticated patient, with the treatment and dosage from the originating consultation. - [Request a prescription reissue](https://docs.hi-doctor.ai/api-reference/prescriptions/request-a-prescription-reissue.md): Asks the clinical team to reissue a prescription that expired or was lost. Repeated requests are throttled. - [Add a progress note](https://docs.hi-doctor.ai/api-reference/progress/add-a-progress-note.md): **Appends** — every call creates a separate entry, including for the same day. `mood` is an integer from 1 to 5. - [Delete a note](https://docs.hi-doctor.ai/api-reference/progress/delete-a-note.md): Self-scoped. - [Delete a weight entry](https://docs.hi-doctor.ai/api-reference/progress/delete-a-weight-entry.md): Self-scoped. - [Delete an injection](https://docs.hi-doctor.ai/api-reference/progress/delete-an-injection.md): Self-scoped. - [Get a note](https://docs.hi-doctor.ai/api-reference/progress/get-a-note.md): Self-scoped. - [Get a weight entry](https://docs.hi-doctor.ai/api-reference/progress/get-a-weight-entry.md): Self-scoped. - [Get an injection](https://docs.hi-doctor.ai/api-reference/progress/get-an-injection.md): Self-scoped. - [Get your goal](https://docs.hi-doctor.ai/api-reference/progress/get-your-goal.md): A singleton — the endpoint always returns an object, never null. - [Get your injection plan](https://docs.hi-doctor.ai/api-reference/progress/get-your-injection-plan.md): A singleton; never returns null. - [List injections](https://docs.hi-doctor.ai/api-reference/progress/list-injections.md): Self-scoped. - [List notes](https://docs.hi-doctor.ai/api-reference/progress/list-notes.md): Self-scoped. - [List weight entries](https://docs.hi-doctor.ai/api-reference/progress/list-weight-entries.md): Self-scoped. - [Log a weight for a day](https://docs.hi-doctor.ai/api-reference/progress/log-a-weight-for-a-day.md): **Upserts by `logged_on`** — one entry per day, so logging again for the same date replaces it. - [Log an injection](https://docs.hi-doctor.ai/api-reference/progress/log-an-injection.md): **Appends** — unlike weight, every call creates a separate entry, including for the same day. `injected_at` is required and must carry its UTC offset. - [Replace a note](https://docs.hi-doctor.ai/api-reference/progress/replace-a-note.md): Full replace; prefer PATCH. - [Replace a weight entry](https://docs.hi-doctor.ai/api-reference/progress/replace-a-weight-entry.md): Full replace; prefer PATCH. - [Replace an injection](https://docs.hi-doctor.ai/api-reference/progress/replace-an-injection.md): Full replace; prefer PATCH. - [Set your goal](https://docs.hi-doctor.ai/api-reference/progress/set-your-goal.md): Full replace of the singleton goal. Read it first and merge, or omitted fields are cleared. - [Set your injection plan](https://docs.hi-doctor.ai/api-reference/progress/set-your-injection-plan.md): Full replace. Read and merge before writing, or omitted fields are cleared. - [Update a note](https://docs.hi-doctor.ai/api-reference/progress/update-a-note.md): Partial update; omitted fields are preserved. - [Update a weight entry](https://docs.hi-doctor.ai/api-reference/progress/update-a-weight-entry.md): Partial update; omitted fields are preserved. - [Update an injection](https://docs.hi-doctor.ai/api-reference/progress/update-an-injection.md): Partial update; omitted fields are preserved. - [Get a questionnaire schema and saved progress](https://docs.hi-doctor.ai/api-reference/questionnaires/get-a-questionnaire-schema-and-saved-progress.md): Returns the question steps, any answers already saved, and reusable prefill from earlier consultations. Question and option text is returned as translation keys; resolve them for the patient's locale before displaying. - [Get saved answers](https://docs.hi-doctor.ai/api-reference/questionnaires/get-saved-answers.md): Partial answers saved so far. Nothing here has been submitted for review. - [List questionnaire categories](https://docs.hi-doctor.ai/api-reference/questionnaires/list-questionnaire-categories.md): The treatment areas a consultation can be started for. - [Replace saved answers](https://docs.hi-doctor.ai/api-reference/questionnaires/replace-saved-answers.md): **Replaces the entire saved answer array.** This is not a merge: whatever you send becomes the complete set, and any answer you omit is erased. - [Submit for medical review](https://docs.hi-doctor.ai/api-reference/questionnaires/submit-for-medical-review.md): Sends the questionnaire to a registered doctor. - [Download an invoice PDF](https://docs.hi-doctor.ai/api-reference/records/download-an-invoice-pdf.md): Returns the invoice as `application/pdf`. - [List reported side effects](https://docs.hi-doctor.ai/api-reference/records/list-reported-side-effects.md): Side effects the authenticated patient has reported. - [List your orders](https://docs.hi-doctor.ai/api-reference/records/list-your-orders.md): Self-scoped. - [List your payments](https://docs.hi-doctor.ai/api-reference/records/list-your-payments.md): Self-scoped. - [Report a suspected side effect](https://docs.hi-doctor.ai/api-reference/records/report-a-suspected-side-effect.md): Sends a suspected medication side effect to the clinical team. Report even if you are unsure the treatment caused it. This is not an emergency channel. - [Get monthly referral totals](https://docs.hi-doctor.ai/api-reference/referrals/get-monthly-referral-totals.md): Self-scoped. - [Get your referral summary](https://docs.hi-doctor.ai/api-reference/referrals/get-your-referral-summary.md): Self-scoped. - [List people you referred](https://docs.hi-doctor.ai/api-reference/referrals/list-people-you-referred.md): Self-scoped. - [List referral transactions](https://docs.hi-doctor.ai/api-reference/referrals/list-referral-transactions.md): Self-scoped. - [Sign up a new patient](https://docs.hi-doctor.ai/api-reference/signup.md): Create a Hi-Doctor account programmatically, verify it, and sign in — everything a chat interface needs. - [How it works](https://docs.hi-doctor.ai/essentials/how-it-works.md): How a Hi-Doctor consultation works, from health questionnaire to doctor review, prescription, delivery and ongoing follow-up. - [Pricing](https://docs.hi-doctor.ai/essentials/pricing.md): What Hi-Doctor charges: €35 per one-off consultation, or an ongoing plan from €25. Medication is billed separately by the pharmacy. - [Where Hi-Doctor operates](https://docs.hi-doctor.ai/essentials/regions.md): Where Hi-Doctor operates across the European Union, the seven languages it is available in, and the currency it charges in. - [Safety](https://docs.hi-doctor.ai/essentials/safety.md): Who decides on treatment, what the eligibility checks do, and when not to use Hi-Doctor. - [Treatment areas](https://docs.hi-doctor.ai/essentials/treatments.md): What Hi-Doctor treats, and how each pathway works. - [Our vision](https://docs.hi-doctor.ai/essentials/vision.md): Healthcare in Europe is stretched, slow and expensive. Hi-Doctor exists to make good medical care reachable for everyone, starting in the EU. - [Hi-Doctor](https://docs.hi-doctor.ai/index.md): Online medical consultations across the European Union, with an MCP connector that lets an AI assistant help you complete and track them. - [Alopecia areata](https://docs.hi-doctor.ai/library/conditions/alopecia-areata.md): Alopecia areata is autoimmune hair loss, not always a candidate for the same treatments as genetic hair loss — how the consultation works. - [Androgenetic alopecia — treatment options a doctor reviews](https://docs.hi-doctor.ai/library/conditions/androgenetic-alopecia.md): Androgenetic alopecia is the most common form of hair loss in men and women. The treatments a doctor considers, and how the consultation works. - [Chlamydia](https://docs.hi-doctor.ai/library/conditions/chlamydia.md): Chlamydia often causes no symptoms. How an online consultation combines testing, antibiotic treatment when indicated, and partner advice. - [Emergency contraception — options and timing](https://docs.hi-doctor.ai/library/conditions/emergency-contraception.md): What determines the right emergency contraception option after unprotected sex, and how the online consultation reviews your case. - [Erectile dysfunction](https://docs.hi-doctor.ai/library/conditions/erectile-dysfunction.md): How an online consultation for erectile dysfunction works, what the doctor rules out first, and the treatments a doctor may consider. - [Female hair loss](https://docs.hi-doctor.ai/library/conditions/female-hair-loss.md): A diffuse thinning pattern in women, evaluated with hormonal nuances a doctor reviews before proposing finasteride, minoxidil or dutasteride. - [HIV PrEP — consultation and eligibility](https://docs.hi-doctor.ai/library/conditions/hiv-prep.md): How an HIV PrEP consultation works: the checks a doctor runs before starting, and the ongoing testing that follow-up includes. - [Insulin resistance](https://docs.hi-doctor.ai/library/conditions/insulin-resistance.md): Insulin resistance usually improves with targeted weight loss and habit changes — how a doctor assesses whether medication would speed that up. - [Low sexual desire](https://docs.hi-doctor.ai/library/conditions/low-libido.md): Low sexual desire can be hormonal, emotional, or a medication side effect — how a Hi-Doctor doctor explores the cause before treatment. - [Metabolic syndrome — the medical treatment options](https://docs.hi-doctor.ai/library/conditions/metabolic-syndrome.md): Metabolic syndrome mixes central obesity with altered blood pressure and glucose. The weight-management medicines a doctor considers, side by side. - [Obesity](https://docs.hi-doctor.ai/library/conditions/obesity.md): Obesity is a complex condition — how a doctor weighs metabolic, hormonal and cardiovascular factors before proposing a weight-management option. - [Conditions](https://docs.hi-doctor.ai/library/conditions/overview.md): The conditions Hi-Doctor treats across weight, hair and sexual health — what causes each one and what a remote consultation can do about it. - [Overweight — when a medical approach makes sense](https://docs.hi-doctor.ai/library/conditions/overweight.md): BMI 25 or higher and the medical weight-management options a doctor considers, from GLP-1 injections to a fat-absorption tablet. - [Performance anxiety](https://docs.hi-doctor.ai/library/conditions/performance-anxiety.md): How a doctor tells performance anxiety apart from erectile dysfunction, and what an online sexual-health consultation covers. - [Peyronie's disease](https://docs.hi-doctor.ai/library/conditions/peyronies-disease.md): Penile curvature linked to fibrous plaques — mild cases may fit an online consultation, but severe Peyronie's usually needs in-person urology assessment. - [Postpartum hair loss — treatment options](https://docs.hi-doctor.ai/library/conditions/postpartum-hair-loss.md): Postpartum hair loss explained: why shedding happens after pregnancy, and the treatment options a doctor considers, including breastfeeding safety. - [Premature ejaculation](https://docs.hi-doctor.ai/library/conditions/premature-ejaculation.md): Premature ejaculation has both medical and behavioural approaches — how the doctor decides which fits your case, and how the online consultation works. - [Telogen effluvium](https://docs.hi-doctor.ai/library/conditions/telogen-effluvium.md): Diffuse shedding after a trigger such as stress, childbirth or fever — how it usually resolves, and the treatments a doctor may consider. - [Traction alopecia — how Hi-Doctor reviews it](https://docs.hi-doctor.ai/library/conditions/traction-alopecia.md): Traction alopecia is hair loss caused by hairstyles that pull on the roots. Why it's mechanical, and how a Hi-Doctor consultation approaches it. - [Urinary tract infection](https://docs.hi-doctor.ai/library/conditions/urinary-tract-infection.md): Burning and urgency can fit a lower UTI, but fever, flank pain, pregnancy or recurrent infection change the care route a doctor takes. - [Weight regain after dieting](https://docs.hi-doctor.ai/library/conditions/weight-regain.md): Why weight regain after rapid loss is physiological, and how a doctor reviews the cause instead of prescribing another crash diet. - [Bilastine 20 mg guide](https://docs.hi-doctor.ai/library/guides/bilastine.md): How to time bilastine away from food and fruit juice, judge your own drowsiness before driving, and tell ordinary allergy symptoms from an emergency. - [Cytisine quit-smoking guide](https://docs.hi-doctor.ai/library/guides/cytisine.md): How to follow the 25-day cytisine taper exactly, stop smoking by day 5, and tell medicine effects apart from nicotine withdrawal. - [Topical dutasteride spray — a usage guide](https://docs.hi-doctor.ai/library/guides/dutasteride-sprays.md): How prescribed dutasteride-only and dutasteride–minoxidil compounded sprays are used, dosed, and what to watch for. - [Emtricitabine/tenofovir PrEP guide](https://docs.hi-doctor.ai/library/guides/emtricitabine-tenofovir-prep.md): Daily HIV PrEP: the tablet schedule, pre-start testing, kidney and bone monitoring, and the symptoms that need prompt review. - [Dutasteride for post-menopausal hair loss](https://docs.hi-doctor.ai/library/guides/female-dutasteride.md): How to take prescribed 0.5 mg dutasteride for post-menopausal hair loss, an off-label use, plus handling precautions and side effects. - [Finasteride for female hair loss](https://docs.hi-doctor.ai/library/guides/female-finasteride.md): A practical guide to off-label 2.5mg finasteride in women — pregnancy safeguards, dosing, and the effects to watch for. - [Spironolactone for female hair loss guide](https://docs.hi-doctor.ai/library/guides/female-spironolactone.md): How to take prescribed 50mg spironolactone for off-label female-pattern hair loss, and the potassium, kidney and pregnancy checks around it. - [Topical finasteride spray — usage guide](https://docs.hi-doctor.ai/library/guides/finasteride-sprays.md): How to use prescribed finasteride-only and finasteride–minoxidil sprays: pump counts, scalp technique and exposure precautions. - [Female hair loss treatment guide](https://docs.hi-doctor.ai/library/guides/hair-growth-female.md): How to use topical minoxidil and oral medicines for female pattern hair loss, what changes to expect at 3, 6 and 12 months, and when to contact your doctor. - [Finasteride treatment guide](https://docs.hi-doctor.ai/library/guides/hair-growth-finasteride.md): How to take daily finasteride for hair loss, what shedding at 3-6 months means, and the timeline to visible regrowth. - [Minoxidil treatment guide — day-to-day use](https://docs.hi-doctor.ai/library/guides/hair-growth-minoxidil.md): How to apply topical minoxidil, the oral option, what to expect month by month, and when to contact your doctor. - [How to use a Mounjaro pen](https://docs.hi-doctor.ai/library/guides/how-to-inject-mounjaro.md): Using a Mounjaro pen week by week: preparation, injection sites, holding for five seconds, the published dose steps, storage and missed doses. - [How to use an Ozempic pen](https://docs.hi-doctor.ai/library/guides/how-to-inject-ozempic.md): Handling an Ozempic pen step by step: sites, needles, technique and disposal, with the dose ladder left to the reviewing doctor. - [How to use a Saxenda pen](https://docs.hi-doctor.ai/library/guides/how-to-inject-saxenda.md): Saxenda is a once-daily pen. How to prepare and inject it, the published week-by-week dose build-up, storage, and the EU stopping rule. - [How to use a Wegovy pen](https://docs.hi-doctor.ai/library/guides/how-to-inject-wegovy.md): The weekly Wegovy routine: preparing the pen, where the injection goes, the published dose ladder, storage and what a missed week means. - [Injection sites, rotation and sharps](https://docs.hi-doctor.ai/library/guides/injection-sites.md): Where a GLP-1 injection goes, why the site is rotated, how pens are stored and handled, and what happens to the needle afterwards. - [A missed or late dose](https://docs.hi-doctor.ai/library/guides/missed-dose.md): The four-day rule for weekly injection pens, what to do about a missed daily tablet or scalp application, and why doubling up is never the answer. - [Oral dutasteride guide](https://docs.hi-doctor.ai/library/guides/oral-dutasteride.md): Once-daily dutasteride for hair loss is an off-label use — the capsule schedule, review points, pregnancy precautions, and side effects to know. - [Oral dutasteride + minoxidil combination guide](https://docs.hi-doctor.ai/library/guides/oral-dutasteride-minoxidil.md): How to take the prescribed dutasteride and minoxidil capsule safely, monitor whole-body effects, and know when to contact your doctor. - [Treatment guides](https://docs.hi-doctor.ai/library/guides/overview.md): Practical guides to being on treatment — using a pen injector, handling side effects, and what the first month actually looks like. - [Side effects: hair-loss medicines](https://docs.hi-doctor.ai/library/guides/side-effects-hair-growth.md): Reported side effects of finasteride, minoxidil and dutasteride, with placebo comparators where they exist, and the EU regulatory warnings that apply. - [Side effects: sexual health medicines](https://docs.hi-doctor.ai/library/guides/side-effects-sexual-health.md): Reported side effects of the PDE5 inhibitors and dapoxetine, the frequencies in the EU product information, and the interactions that rule them out. - [Side effects: weight-loss medicines](https://docs.hi-doctor.ai/library/guides/side-effects-weight-loss.md): Reported side effects of semaglutide, tirzepatide, liraglutide and orlistat, with placebo comparators, plus what the guides say about managing them. - [Spedra (avanafil) usage guide](https://docs.hi-doctor.ai/library/guides/spedra-avanafil.md): Practical dosing guide for Spedra (avanafil): timing before sex, contraindicated combinations, blood-pressure effects and urgent warning signs. - [Varenicline quit-smoking guide](https://docs.hi-doctor.ai/library/guides/varenicline.md): The standard first-week titration for varenicline, a 12-week quit-smoking course, and how to manage nausea, sleep and mood changes along the way. - [Vitaros (alprostadil) cream — usage guide](https://docs.hi-doctor.ai/library/guides/vitaros-alprostadil.md): How to apply the single-use Vitaros alprostadil container, dose timing and frequency limits, storage and prolonged-erection warning signs. - [Your first month on treatment](https://docs.hi-doctor.ai/library/guides/what-to-expect-first-month.md): What the first four weeks usually look like on a weight-loss, hair-growth or sexual health treatment, and what the doctor is actually measuring. - [Xenical (orlistat) guide](https://docs.hi-doctor.ai/library/guides/xenical-orlistat.md): How to time 120 mg orlistat capsules with fat-containing meals, manage bowel effects, protect fat-soluble vitamins, and know when to review treatment. - [Addyi — why Hi-Doctor doesn't prescribe it](https://docs.hi-doctor.ai/library/medicines/addyi.md): Addyi sits in sexual health, but it isn't a first-line option on Hi-Doctor. What the doctor offers instead, and how the review works. - [Orlistat 120mg (alli)](https://docs.hi-doctor.ai/library/medicines/alli.md): How orlistat blocks fat absorption in the gut, what XENDOS and the European Multicentre study reported, and the bowel side effects to expect. - [Alprostadil for erectile dysfunction](https://docs.hi-doctor.ai/library/medicines/alprostadil.md): How alprostadil cream, injection and urethral pellet work, EU authorisation dates, and the side effects reported in trials. - [Avanafil](https://docs.hi-doctor.ai/library/medicines/avanafil.md): What avanafil is, how it works, the fastest-onset figures from its EU trials, and what a doctor checks before prescribing it. - [Dutasteride 0.5mg (Avodart)](https://docs.hi-doctor.ai/library/medicines/avodart.md): Dutasteride lowers DHT and is authorised in the EU only for an enlarged prostate — using it for hair loss here is off-label, unlike in South Korea and Japan. - [Azithromycin — chlamydia alternative](https://docs.hi-doctor.ai/library/medicines/azithromycin.md): What azithromycin treats, how the single-dose regimen works, common side effects and why doxycycline is usually preferred first. - [Bimatoprost](https://docs.hi-doctor.ai/library/medicines/bimatoprost.md): Bimatoprost has three separate stories — eye drops, eyelashes and scalp hair — and only two of them are authorised anywhere. Here is what applies to which. - [Bremelanotide](https://docs.hi-doctor.ai/library/medicines/bremelanotide.md): Why bremelanotide (Vyleesi) has no EU authorisation, what the RECONNECT trials reported, and what a Hi-Doctor doctor can review instead. - [CagriSema — not authorised, and what to take instead](https://docs.hi-doctor.ai/library/medicines/cagrisema.md): CagriSema has finished phase 3 trials but has no EU marketing authorisation. What that means, and the authorised alternative a doctor can prescribe. - [Caverject (alprostadil injection)](https://docs.hi-doctor.ai/library/medicines/caverject.md): How alprostadil injection works for erectile dysfunction, why the first dose is taught in clinic, and the priapism warning signs to know. - [Tadalafil (Cialis) for erectile dysfunction](https://docs.hi-doctor.ai/library/medicines/cialis.md): How tadalafil works, its 36-hour window, EU authorisation since 2002, dosing options and the side effects reported in trials. - [Contrave](https://docs.hi-doctor.ai/library/medicines/contrave.md): Why Contrave isn't prescribed in the EU, what the identical EU-authorised medicine is called instead, and what the COR-I trial reported. - [Dapoxetine (Priligy)](https://docs.hi-doctor.ai/library/medicines/dapoxetine.md): Dapoxetine, sold as Priligy, is a fast-acting SSRI taken 1–3 hours before sex for premature ejaculation — how it works, trial results and EU dosing rules. - [Doxycycline 100mg — chlamydia first option](https://docs.hi-doctor.ai/library/medicines/doxycycline.md): How doxycycline 100mg treats uncomplicated chlamydia, the typical seven-day regimen, common side effects and who needs an alternative. - [Dutasteride 0.5mg](https://docs.hi-doctor.ai/library/medicines/dutasteride.md): Dutasteride is EU-authorised only for an enlarged prostate. Using it for hair loss is off-label everywhere in Europe, so Hi-Doctor proposes finasteride instead. - [Emtricitabine/tenofovir](https://docs.hi-doctor.ai/library/medicines/emtricitabine-tenofovir.md): How emtricitabine/tenofovir disoproxil works as HIV PrEP, the monitoring it requires, and who it is not suitable for. - [Finasteride — how it works, evidence and side effects](https://docs.hi-doctor.ai/library/medicines/finasteride.md): Finasteride: a daily 1 mg tablet authorised in the EU for male pattern hair loss since 1999. How it works, the trial evidence and reported side effects. - [Flibanserin](https://docs.hi-doctor.ai/library/medicines/flibanserin.md): Flibanserin (Addyi) has never been authorised in the EU — the alcohol boxed warning, the BEGONIA trial, and the sexual health alternatives a doctor reviews. - [Fosfomycin 3g for cystitis](https://docs.hi-doctor.ai/library/medicines/fosfomycin.md): How the single-dose fosfomycin sachet works for uncomplicated cystitis, how to take it, side effects, and when it isn't right. - [Hair transplant](https://docs.hi-doctor.ai/library/medicines/hair-transplant.md): Why a hair transplant is surgery, not something Hi-Doctor can prescribe, plus the complication rates from a 2025 scoping review. - [Ketoconazole for hair loss](https://docs.hi-doctor.ai/library/medicines/ketoconazole.md): Ketoconazole shampoo is EU-authorised for dandruff, not hair loss — the oral tablet was suspended EU-wide in 2013 over liver injury risk. - [Vardenafil (Levitra) — how it works and dosing](https://docs.hi-doctor.ai/library/medicines/levitra.md): Vardenafil for erectile dysfunction: how it works, EU authorisation history, trial results and reported side effects. - [Levonorgestrel 1.5mg](https://docs.hi-doctor.ai/library/medicines/levonorgestrel.md): The emergency contraceptive pill: how it delays ovulation, why timing within 72 hours matters, and when a copper IUD is the better option instead. - [Liraglutide](https://docs.hi-doctor.ai/library/medicines/liraglutide.md): How liraglutide (Saxenda) works for weight management, the SCALE trial results, the weekly dose build-up, and its side effects. - [Minoxidil — topical vs oral, evidence and side effects](https://docs.hi-doctor.ai/library/medicines/minoxidil.md): Minoxidil comes as an EU-authorised topical treatment and an off-label oral tablet for hair loss. How each works, the trial evidence and side effects. - [Mounjaro (tirzepatide)](https://docs.hi-doctor.ai/library/medicines/mounjaro.md): What tirzepatide is, how the weekly injection and dose schedule work, what SURMOUNT-1 measured, and who a doctor rules out. - [MUSE (alprostadil urethral pellet)](https://docs.hi-doctor.ai/library/medicines/muse.md): What MUSE is, its Spanish national authorisation, current availability, and the side effects reported in its pivotal trial. - [Mysimba](https://docs.hi-doctor.ai/library/medicines/mysimba.md): Mysimba (naltrexone/bupropion): EU authorisation, who it's licensed for, the 16-week stopping rule, and what the COR-I trial reported. - [Nitrofurantoin for UTIs](https://docs.hi-doctor.ai/library/medicines/nitrofurantoin.md): Nitrofurantoin concentrates in urine to treat uncomplicated lower UTIs — dosing schedules, common side effects, and the red flags that rule it out. - [Oral minoxidil — off-label hair-loss option](https://docs.hi-doctor.ai/library/medicines/oral-minoxidil.md): Oral minoxidil for hair loss: how it differs from the topical solution, why the tablet form is off-label in the EU, and what trials reported. - [Orforglipron](https://docs.hi-doctor.ai/library/medicines/orforglipron.md): Orforglipron is a once-daily GLP-1 weight-management tablet approved in the US as Foundayo. It has no EU authorisation, so Hi-Doctor cannot prescribe it. - [Orlistat 120mg](https://docs.hi-doctor.ai/library/medicines/orlistat.md): How orlistat (Xenical) blocks fat digestion, the XENDOS trial results, and the gastrointestinal side effects it is known for. - [Medicines](https://docs.hi-doctor.ai/library/medicines/overview.md): Every medicine referenced across Hi-Doctor consultations — how it works, what the trials reported, and what has been reported as a side effect. - [Ozempic (semaglutide) — indication, dosing and safety](https://docs.hi-doctor.ai/library/medicines/ozempic.md): Ozempic is semaglutide authorised in the EU for type 2 diabetes, not weight management. How it works, dosing, and who should not take it. - [Phentermine](https://docs.hi-doctor.ai/library/medicines/phentermine.md): Phentermine has no EU marketing authorisation for weight loss — why EU regulators withdrew this drug class, and what a doctor considers instead. - [Priligy — why Hi-Doctor doesn't prescribe it](https://docs.hi-doctor.ai/library/medicines/priligy.md): Priligy is a sexual health medicine Hi-Doctor doesn't prescribe today, and the EU-authorised alternatives a doctor considers instead. - [Propecia](https://docs.hi-doctor.ai/library/medicines/propecia.md): Propecia (finasteride 1mg): how it lowers DHT, its national EU authorisation, sexual side-effect rates, and the 2025 mood-safety update. - [PRP therapy for hair loss](https://docs.hi-doctor.ai/library/medicines/prp-therapy.md): PRP is a clinic procedure using your own blood, not a licensed medicine — no EU regulator has assessed it, and it can't be booked online. - [Qsymia — why it is not prescribed in most of the EU](https://docs.hi-doctor.ai/library/medicines/qsymia.md): Qsymia (phentermine/topiramate): why the EMA refused EU-wide approval, where it is sold under the name Qsiva, and EU-authorised alternatives. - [Regaine](https://docs.hi-doctor.ai/library/medicines/regaine.md): Regaine (minoxidil) is EU-authorised as a topical foam for hair loss. The tablet form is only licensed for blood pressure — hair use is off-label. - [Retatrutide](https://docs.hi-doctor.ai/library/medicines/retatrutide.md): Retatrutide is not approved anywhere: what the triple-agonist mechanism is, what the trials show so far, and the EU-authorised alternative. - [Rogaine — a US brand name, not EU-authorised](https://docs.hi-doctor.ai/library/medicines/rogaine.md): Rogaine has no EU marketing authorisation. It is the same molecule sold in Europe as Regaine — see the authorised alternative and its evidence. - [Rybelsus (oral semaglutide)](https://docs.hi-doctor.ai/library/medicines/rybelsus.md): Rybelsus is authorised in the EU for type 2 diabetes only — how it works, dosing on an empty stomach, and why weight loss use is off-label. - [Semaglutide](https://docs.hi-doctor.ai/library/medicines/semaglutide.md): What semaglutide is, how the GLP-1 mechanism works, what STEP 1 reported, and what a doctor checks before prescribing it for weight loss. - [Sildenafil (Viagra)](https://docs.hi-doctor.ai/library/medicines/sildenafil.md): Sildenafil, authorised across the EU since 1998, relaxes penile blood vessels so more blood flows in on stimulation — mechanism, dosing and side effects. - [Avanafil (Spedra) — fast-onset ED tablet](https://docs.hi-doctor.ai/library/medicines/spedra.md): Avanafil for erectile dysfunction: how it works, EU authorisation since 2013, trial success rates and reported side effects. - [Spironolactone](https://docs.hi-doctor.ai/library/medicines/spironolactone.md): Spironolactone treats blood pressure and heart failure. Its off-label use for female pattern hair loss carries no EU authorisation. - [Stendra (avanafil)](https://docs.hi-doctor.ai/library/medicines/stendra.md): Stendra is the US brand name for avanafil, not itself EU-authorised — how avanafil works, dosing and side effects under its EU brand. - [Tadalafil — 36-hour window, dosing and side effects](https://docs.hi-doctor.ai/library/medicines/tadalafil.md): Tadalafil 10/20mg is a PDE5 inhibitor authorised in the EU since 2002, with an effect lasting up to 36 hours. How it works, dosing and side effects. - [Testosterone replacement](https://docs.hi-doctor.ai/library/medicines/testosterone-replacement.md): Testosterone replacement is EU-authorised for confirmed deficiency only — the TRAVERSE cardiovascular trial and the 2015 EU review that restricted its use. - [Tirzepatide (Mounjaro) for weight management](https://docs.hi-doctor.ai/library/medicines/tirzepatide.md): How tirzepatide's dual GIP/GLP-1 action works, its weekly dose escalation, EU authorisation, and SURMOUNT-1 side effects. - [Topical minoxidil](https://docs.hi-doctor.ai/library/medicines/topical-minoxidil.md): How topical minoxidil works on the hair follicle, its EU authorisation, application steps, and side-effect rates versus off-label oral minoxidil. - [Testosterone replacement therapy](https://docs.hi-doctor.ai/library/medicines/trt.md): Hi-Doctor does not prescribe testosterone therapy directly — why, and which EMA-authorised sexual health options a doctor considers instead. - [Ulipristal acetate 30mg — emergency contraception](https://docs.hi-doctor.ai/library/medicines/ulipristal.md): Ulipristal acetate emergency contraception: how the single dose works within a five-day window, side effects and who needs another option. - [Vardenafil 5/10/20mg](https://docs.hi-doctor.ai/library/medicines/vardenafil.md): How vardenafil works for erectile dysfunction, the EU efficacy data behind it since 2003, dosing and food timing, and why it must never mix with nitrates. - [Viagra (sildenafil)](https://docs.hi-doctor.ai/library/medicines/viagra.md): How sildenafil (Viagra) works for erectile dysfunction, EU-authorised since 1998: mechanism, dosing, side effects and the nitrate interaction. - [Victoza (liraglutide) — trial evidence and side effects](https://docs.hi-doctor.ai/library/medicines/victoza.md): Victoza is liraglutide, authorised in the EU for weight management since March 2015 under the name Saxenda. Trial data, side-effect rates and dosing. - [Vitaros (alprostadil cream)](https://docs.hi-doctor.ai/library/medicines/vitaros.md): How alprostadil cream works for erectile dysfunction, the UK authorisation, and the local side effects reported in trials. - [Vyleesi — why Hi-Doctor doesn't prescribe it](https://docs.hi-doctor.ai/library/medicines/vyleesi.md): Vyleesi is a sexual health medicine Hi-Doctor doesn't prescribe today, and the EU-authorised alternatives a doctor considers instead. - [Wegovy](https://docs.hi-doctor.ai/library/medicines/wegovy.md): Wegovy (semaglutide): the EU dose ladder, injection technique, storage rules, and what the STEP 1 trial reported for weight management. - [Orlistat 120mg (Xenical)](https://docs.hi-doctor.ai/library/medicines/xenical.md): Orlistat blocks gut enzymes so about 30% of dietary fat passes through unabsorbed — a non-injectable, non-GLP-1 option authorised in the EU since 1998. - [Zepbound — why it is not prescribed in the EU](https://docs.hi-doctor.ai/library/medicines/zepbound.md): Zepbound (tirzepatide): why it has no EU marketing authorisation under that name, the SURMOUNT-1 trial results, and the EU alternative, Mounjaro. - [Health library](https://docs.hi-doctor.ai/library/overview.md): Reference pages on the conditions Hi-Doctor treats, the medicines involved, and what the evidence behind them actually says. - [Hair loss treatment pathway](https://docs.hi-doctor.ai/library/treatments/hair-growth-treatment.md): How Hi-Doctor's medical assessment and tailored treatment for hair loss works, and how it fits alongside the weight-loss and sexual-health pathways. - [Sexual health consultation](https://docs.hi-doctor.ai/library/treatments/sexual-health-consultation.md): A discreet online consultation for intimate concerns, covering common dysfunctions with the same medical process as Hi-Doctor's other treatment areas. - [Weight management programme overview](https://docs.hi-doctor.ai/library/treatments/weight-management-program.md): How Hi-Doctor's weight management programme works: initial assessment, quarterly review and doctor-guided adjustments over time. - [Build on Hi-Doctor with AI](https://docs.hi-doctor.ai/mcp/ai-integration.md): A ready-to-paste prompt, the conversational questionnaire protocol, and the rules an assistant must follow. - [Connect Hi-Doctor to Claude](https://docs.hi-doctor.ai/mcp/claude.md): Add the Hi-Doctor connector to Claude in one click, sign in or create an account, and complete a consultation by chat. - [Connect the MCP](https://docs.hi-doctor.ai/mcp/connect.md): Add the Hi-Doctor connector to Claude and sign in with your Hi-Doctor account. - [Hi-Doctor MCP Connector](https://docs.hi-doctor.ai/mcp/overview.md): Connect your Hi-Doctor account to Claude or any MCP client to complete questionnaires, track progress and manage your plan by chat. - [Permissions](https://docs.hi-doctor.ai/mcp/permissions.md): What each Hi-Doctor connector permission grants, which actions can cost money, and what no connected app can ever do. - [Security](https://docs.hi-doctor.ai/mcp/security.md): How the connector authenticates you, what it stores, and what it deliberately refuses to do. - [Tools reference](https://docs.hi-doctor.ai/mcp/tools.md): Every tool the Hi-Doctor connector exposes to a patient, grouped by the permission it needs. ## Optional - [Add the MCP connector](https://claude.ai/customize/connectors?modal=add-custom-connector&connectorName=Hi-Doctor&connectorUrl=https://mcp.hi-doctor.ai/mcp) - [hi-doctor.ai](https://hi-doctor.ai)