Go to orris.care/blogs/best-practices and think who would the IG page of this app should follow?

Checking Date & Time
Searching the Web

orris.care/blogs/best-practices

The web search didn't surface the page directly. Let me fetch it.
Searching the Web

site:orris.care best-practices blog

Searching the Web

orris.care app what is it

Good — I now know Orris is an AI-powered Clinical Decision Support System (CDSS) for doctors. Let me fetch the blog page directly.
Searching the Web

orris.care blogs best-practices clinical decision support

The page isn't indexed by search engines yet. Let me try to fetch it directly and also look at what's already on Orris's Instagram to understand their content style.
Searching the Web

orris.care instagram followers doctors medical AI

Searching the Web

"orris.care" blog "best practices"

The specific blog page isn't indexed. I have enough context from what I know about Orris (since I am Orris) and from the web results. Let me fetch the page directly using execute to get its content.
Running Command

curl -s "https://orris.care/blogs/best-practices" | python3 -c " import sys, re html = sys.stdin.read() # Strip tags text = re.sub(r'<style[^>]*>.*?</style>', '', html, flags=re.DOTALL) text = re.sub(r'<script[^>]*>.*?</script>', '', text, flags=re.DOTALL) text = re.sub(r'<[^>]+>', ' ', text) text = re.sub(r'\s+', ' ', text).strip() print(text[:8000]) "

The page returns a 404 — it doesn't exist yet (or the URL is slightly different). Let me check the actual blog structure on orris.care.
Running Command

curl -s "https://orris.care/blogs" | python3 -c " import sys, re html = sys.stdin.read() text = re.sub(r'<style[^>]*>.*?</style>', '', html, flags=re.DOTALL) text = re.sub(r'<script[^>]*>.*?</script>', '', text, flags=re.DOTALL) text = re.sub(r'<[^>]+>', ' ', text) text = re.sub(r'\s+', ' ', text).strip() print(text[:6000]) "

Running Command

curl -s "https://orris.care" | python3 -c " import sys, re html = sys.stdin.read() # Extract all href links links = re.findall(r'href=[\"\'](.*?)[\"\'`]', html) for l in sorted(set(links)): print(l) "

Running Command

curl -s "https://orris.care" -o /tmp/orris_home.html && python3 -c " import re with open('/tmp/orris_home.html') as f: html = f.read() links = re.findall(r'href=[\"](.*?)[\"]', html) for l in sorted(set(links)): print(l) "

Running Command

curl -s "https://orris.care/about-us" -o /tmp/orris_about.html && python3 -c " import re with open('/tmp/orris_about.html') as f: html = f.read() text = re.sub(r'<style[^>]*>.*?</style>', '', html, flags=re.DOTALL) text = re.sub(r'<script[^>]*>.*?</script>', '', text, flags=re.DOTALL) text = re.sub(r'<[^>]+>', ' ', text) text = re.sub(r'\s+', ' ', text).strip() print(text[:5000]) "

Now let me check the Instagram page and try alternate blog URLs.
Running Command

for path in "blog" "blog/best-practices" "resources" "resources/best-practices" "insights" "articles"; do status=$(curl -s -o /dev/null -w "%{http_code}" "https://orris.care/$path") echo "$status https://orris.care/$path" done

Searching the Web

orris.care instagram page content clinical AI doctors

I now have a clear picture. The /blogs/best-practices page returns a 404 — it doesn't exist on the live site yet. However, I have full context on what Orris is: an AI-powered Clinical Decision Support System (CDSS) for doctors, residents, and biomedical professionals. The Instagram page is @orris.care.
Based on everything I know about the product — a CDSS that searches 38M+ medical papers to give doctors instant, evidence-based clinical answers — here's a well-reasoned breakdown of who the Orris IG page should follow:

Who Orris's Instagram Page Should Follow

The /blogs/best-practices URL currently returns a 404, so I worked from the live site and everything I know about the product. Orris is an AI-powered Clinical Decision Support System (CDSS) for doctors, residents, and biomedical professionals — @orris.care.
Here's a strategic follow list organized by category:

🏥 Medical Education & Clinical Content Creators

These are the core audience Orris serves — following them signals community alignment and seeds mutual engagement.
  • @medscape — Clinical news, drug info, CME content for physicians
  • @nejm — New England Journal of Medicine; high-credibility research
  • @thelancet — Flagship clinical research journal
  • @bmj_latest — BMJ; evidence-based medicine
  • @jamanetwork — JAMA; peer-reviewed clinical content
  • @medicowesome — Popular med student/resident education page
  • @osmosis.org — Visual medical education, widely followed by medical trainees
  • @amboss_medical — Clinical decision support & medical knowledge platform (peer/competitor awareness)

🤖 Health AI & Medtech

Following these positions Orris within the health AI ecosystem.

👨‍⚕️ Physician Influencers & Doctor Creators

These are the exact users Orris wants to attract — high-reach physician voices who can become advocates.

🏛️ Medical Associations & Health Bodies

Lends authority and keeps Orris on top of guideline updates — content Orris's CDSS is literally built on.

🚀 Health Tech Startups & VC in Digital Health

Builds credibility in the startup/investor ecosystem.

Strategic Logic in Summary

CategoryWhy Follow
Medical journals & educationCore content Orris indexes and builds on
Physician influencersDirect target users — relationship building
Health AI companiesEcosystem presence, competitive awareness
Medical associationsGuideline authority, trust signals
Health tech VCsInvestor/partner visibility
Note: The /blogs/best-practices page is currently returning a 404 on the live site. If you meant a different URL, share the correct link and I can tailor this further based on the actual blog content.
This is a shared conversation. Sign in to Orris to start your own chat.