// TL;DR — five lines, then scroll for the details.

All on public sources, 25 links at the bottom. No device was sniffed. Personal disclosure: I've been following the smart-ring world for eight years — in 2018 I came across the Token Ring (section 01.5). I'm not here to uninstall anything for you.

01 — The Instagram Post and That Unpleasant Feeling

I'm scrolling Instagram. Sponsored: Oura ring. ‘Monitor your sleep, heart rate, stress, temperature.’ Nice claim. Nice to scroll past, by the way.

Mark Grayson scrolling phone bored — Invincible
// me, evening, scroll mode, before unhealthy curiosity went OSINT mode

Then a non-sponsored post — an Italian creator — gives a clean, accurate summary: biometric data collected continuously, device not certified as a medical device, possible Palantir collaboration. The ‘Palantir’ part trips the conditioned reflex of an ex-threat-intel consultant: ‘okay, how true is this?’

I search. I find the Snopes fact-check. ‘The rumor that Oura ring shares health data with Palantir is an exaggeration.’ I calm down for two seconds. Then I read the rest. [1]

// Fact-check the fact-check

Snopes literally writes: ‘DOD personnel access DOD data using a specialized Oura platform that keeps DOD data separate from the data of individual Oura subscribers’. Translation: there's an Oura platform for the DoD, built on top of Palantir ‘FedStart’. ‘Your’ data: no. Private Smith's data while wearing the ring: yes. And here is where the confusion begins: the fact-check is technically true, sociologically misleading. The infrastructure powering ‘a special Oura version for the military’ is the same Palantir ecosystem running ImmigrationOS and selling Lavender to the IDF.

Sure Jan — The Brady Bunch skeptical reaction
// ‘Oura doesn't share its data with Palantir’. Sure, Jan.

I open Oura's tech documentation. It's public, anyone can read it. I figure it'll take an hour. It becomes three days. Here we are.

01.5 — Eight Years Ago, in a Store, I Saw a Ring (and Thought: We're Gonna Fall for This)

Insider disclaimer: I've been interested in this topic since before it went mainstream. In 2018 — eight years ago, for those counting — I first saw a smart ring on someone's wrist (well, finger). It was a Token Ring, from a New York startup founded in 2016 by Melanie and Steve Shapiro, ex blockchain crypto-people who pivoted to wearable hardware. Pre-sale July 2017 ($249 brushed silver, $299 rose gold or black rhodium). First shipments December 2017.

Old Man Yells At Cloud — The Simpsons meme
// me every time I explain to someone that smart rings already existed back in 2017

Token Ring specs, year 2017, for the historical record:

Note the ideological difference vs Oura: Token had a single biometric sensor (the fingerprint) and existed to identify you, not measure you. It was an ‘authenticator’, not a ‘health tracker’. Token never scaled in consumer (finger-fitting issues, high price for perceived return), and in 2023 it officially pivoted to the enterprise/SOC2 market with the TokenCore rebrand — today it sells biometric rings to banks, hospitals and critical infrastructure as anti-ransomware MFA. Nearly 200 organizations on the waitlist at relaunch.

// Historical lesson

Token taught me two things back in 2018: (1) the ‘ring’ form is interesting because the finger is one of the very few body sites constantly in skin contact, dry, and never removed (unlike a watch); (2) a biometric ring is an identity device before it's a health one. Eight years later, Oura took Token's form and slapped the opposite function on top: it doesn't authenticate with you — it measures you. And the fact that both still live side by side (one B2B toward banks/hospitals, the other B2C toward athletes/wellness) tells you better than any analysis that the real wearable business isn't what they do, but what they enable in the stack you don't see.

02 — Anatomy of a Ring

Before we talk about Palantir, let's look at what we're actually putting on our finger. The Oura Ring 4 (the current model, late-2024 launch) is a small biomedical computer disguised as jewelry.

2.1 — The Hardware Stack

┌─────────────────────────────────────┐
│   OURA RING 4 — Internal Topology   │
├─────────────────────────────────────┤
│  [PPG IR×8] [PPG R×4] [PPG G×6]     │  ← 18 optical paths
│       │         │         │         │
│       └─────────┴─────────┘         │
│              │                      │
│           [SoC + DSP]               │  ← onboard signal proc.
│              │                      │
│       ┌──────┼──────┐               │
│       │      │      │               │
│  [NTC sens] [Accel] [BLE 5.0]       │  ← skin temp, motion, radio
│   ±0.1°C    3-axis   GATT           │
│              │                      │
│           [Battery]                 │  ← 7-day claim
└─────────────────────────────────────┘

In order of forensic interest:

// Tech note

Oura claims ‘heart rate at 99.9% accuracy compared to ECG’. True. But measuring heart rate is the easiest PPG task. Correctly measuring sleep stages, high-frequency HRV, or core (vs skin) body temperature is a different planet. We'll see the real numbers below.

2.2 — The Software Stack

The ring does onboard preprocessing (local DSP), then syncs over BLE with the phone app. The app compresses and ships the data to the Oura cloud. From there, if you opted in, data can flow to third parties (Apple Health, Google Fit, Strava, partners of their ‘Personal Health Data Platform’).

The public API lives at https://api.ouraring.com/v2. OAuth2 Bearer token in Authorization: Bearer .... TLS 1.2+ in transit, AES-256 at rest. Modern standard, nothing scandalous crypto-wise. What's interesting is the granularity of what comes out:

# Example real call to the Oura v2 API
# (sample from official docs + community Python SDK)

GET /v2/usercollection/sleep?start_date=2026-05-20&end_date=2026-05-23
Host: api.ouraring.com
Authorization: Bearer eyJhbGciOiJSUzI1NiIs...

Response:
{
  "data": [
    {
      "id": "8f9a...4e",
      "day": "2026-05-22",
      "bedtime_start": "2026-05-22T23:14:00+02:00",
      "bedtime_end":   "2026-05-23T07:02:00+02:00",
      "average_heart_rate": 54.3,
      "average_hrv": 47,
      "average_breath": 14.2,
      "temperature_deviation": -0.18,
      "temperature_trend_deviation": 0.04,
      "deep_sleep_duration": 4980,   // 83 min
      "rem_sleep_duration": 5760,    // 96 min
      "light_sleep_duration": 14820, // 247 min
      "sleep_score_delta": 2,
      "readiness_score_delta": -3,
      "heart_rate": { /* time-series 5-min granularity */ },
      "hrv":        { /* time-series RMSSD per epoch */ },
      "movement_30_sec": "11211223211..."   // encoding per epoch
    }
  ],
  "next_token": null
}
Hackerman — pixel art hacker typing
// curl -H ‘Authorization: Bearer eyJ...’ api.ouraring.com/v2/usercollection/sleep — that's literally all it takes

Translation: for every night you sleep wearing the ring, there's a JSON record nearly a kilobyte long describing your autonomic nervous system at 30-second resolution. HRV is effectively a proxy for parasympathetic tone. Skin temperature is a proxy for hormonal and inflammatory cycles. Sleep-time respiration can reveal apnea, anxiety, various syndromes. Movement is your physical presence/absence in the home at 30-second resolution.

And this is just the ‘sleep’ endpoint. Living alongside it:

Endpoint What it contains Sensitivity
/v2/usercollection/sleepSleep stages, HRV, temp, breath, movement per nightVERY HIGH
/v2/usercollection/daily_activitySteps, calories, sedentary time, intensity, hour by hourHIGH
/v2/usercollection/daily_readiness‘Are you ready?’ score, drivers, recovery balanceHIGH
/v2/usercollection/daily_stressTime in stress, recovery, time-of-day breakdownVERY HIGH
/v2/usercollection/daily_spo2Average nightly oxygen saturation, distributionHIGH (apnea proxy)
/v2/usercollection/heartrateTime-series HR at 5-min granularity 24/7VERY HIGH
/v2/usercollection/workoutActivity sessions, intensity, duration, typeMEDIA
/v2/usercollection/tagManual ‘tags’ — alcohol, caffeine, travel, stress, illness, sex, period, medsEXTREME

The last one is the most interesting for profilers. Users tag voluntarily. ‘Took a Xanax yesterday.’ ‘Period day 3.’ ‘Had sex.’ ‘Drank.’ ‘On vacation.’ They do it because the app politely asks them to, in order to ‘correlate with your score’. And those tags live in the same database as the physiological metrics, indexable, exportable, statistically derivable.

// Uncomfortable thought

You'd never tell your employer you took anxiolytics last night. But you told the cloud that hosts the same stack that sells kill lists. The cloud won't tell your employer because ‘it doesn't sell data’. Sleep tight.

03 — The Palantir Case: True, False, and «True But Not How You Think»

Let's cut to the chase. Three publicly verifiable facts:

3.1 — Oura + DoD

Since 2019 Oura has held a contract with the U.S. Department of Defense. Initially a study program. It grew. In August 2025 Oura opened a ‘made in Texas’ manufacturing facility to ‘better serve DoD needs’. Source: official Oura blog, press release. [2]

3.2 — Oura + Palantir (the subtle truth)

Oura uses Palantir's ‘FedStart’. FedStart is a PaaS that lets software vendors operate in a DoD-pre-accredited environment at ‘Impact Level 5’ (IL5), a tier required to handle national security data. It is — literally — Palantir-as-a-Compliance-Layer. Without FedStart, Oura would have taken years to get the same accreditation. [3]

In other words: the Palantir deal is a ‘I need your security lift’ deal, not a ‘I'm selling you my users' data’ deal. Snopes is right on this specific point. Oura even said — September 2025, responding to the backlash — that they ‘haven't yet started sharing data with the DoD through Palantir’. Note the ‘haven't yet’. That's the tense of a company that intends to start, not of one that has denied the possibility.

3.3 — What Palantir Does the Rest of the Day

This is the part Snopes' ‘technically true’ fact-check completely ignores. Let's look at the other 95% of Palantir's 2025 business:

3.4 — The IDF Triad: Lavender, Gospel, Where's Daddy?

Lavender doesn't work alone. In Italy this is barely discussed, but the IDF system is a three-piece architecture documented by Yuval Abraham's investigation for +972 Magazine and Local Call (April 2024), based on six sources inside Israeli intelligence:

System What it does Output
Lavender AI scoring 1-100 of every Palestinian, based on phone metadata, social, movement, satellite Kill list (~37,000 in the first six weeks)
Gospel Recommends buildings/structures to strike Infrastructure target list
Where's Daddy? Real-time tracking of Lavender targets, alerts when they enter their home Night strikes with family present

The flow: Lavender produces names, Where's Daddy? geolocates them in real time, Gospel picks the moment and the building. Error rate admitted by the IDF itself: 10% — one in ten flagged is a false positive. Across 37,000 targets in the first six weeks after October 7, the arithmetic is simple. Important technical note: Palantir explicitly stated that ‘the Israeli systems are independent of its technology and existed before the 2024 partnership’. Technically true. What the 2024 partnership brought is the data integration layer — the same thing Palantir sells to the DoD, to ICE, and now to Oura. They don't run the stack, but they hold it together.

3.5 — The 8VC Ecosystem: What the Italian Press Isn't Telling You

Here we enter the piece that — to the best of my research — has had zero coverage on any of the major Italian tech outlets. The ‘Palantir + Oura’ line is a spin-off of a far larger ecosystem, informally known as the defense-tech belt:

Translation: the Oura/Palantir deal isn't a bizarre exception of a wellness startup that sold itself to the Pentagon. It's a coherent piece of a larger infrastructure in which consumer wellness, defense AI, identity management, and immigration enforcement share the same capital pool, the same founders, the same compliance platforms, and — increasingly — the same clouds. Snopes is right about the bytes. About the ecosystem, it's blind.

// The Snopes blind spot

«Oura doesn't share your data with Palantir» is a true fact-check at the level of byte transfer, and completely misleading at the level of risk assessment. It's the equivalent of saying «your bank doesn't share your money with the tax agency» — formally correct, omitting that the information identifying your money is already in the same ecosystem.

04 — What Oura's Data Is Actually Worth

OK, there's an ethical-political problem. But maybe the device is clinically exceptional and so it's worth it? Let's see. The two most serious independent validations are:

4.0 — Prequel: Mike Snyder, Stanford 2017 (the Real Antecedent)

When the press talks about TemPredict as ‘the moment wearables predicted COVID’, it forgets an interesting historical detail. Three years before UCSF's TemPredict, Michael Snyder, chair of Stanford's Department of Genetics, published (January 2017) a PLOS Biology paper showing that anomalous heart rate and skin temperature variations from a smartwatch could anticipate infection diagnosis by days. Snyder himself self-diagnosed Lyme disease wearing seven biosensors simultaneously (only nerds and apocalypse survivors do this, apparently).

Mad Scientist — mad science
// Mike Snyder, January 2017, seven sensors on his wrist, ‘maybe I have Lyme disease’

UCSF's TemPredict in 2020 is therefore not a scientific revolution signed by Oura: it's the application of an already-documented public hypothesis to specific hardware. I'm pointing this out because in Italy the story often gets told as ‘the ring that sensed something no one had ever seen’. False: Snyder saw it with a Fitbit, and before him decades of infectious disease epidemiology saw it.

4.1 — The Tokyo Study (96 participants, 421,045 epochs)

Published 2024, Sleep Medicine (Elsevier). Compares Oura Ring Gen3 with OSSA 2.0 (Oura Sleep Staging Algorithm 2.0) against multi-night ambulatory polysomnography. PSG is the clinical gold standard.

75,5%
Light sleep accuracy
90,6%
REM accuracy
94%
Sensitivity (detects sleep)
73%
Specificity (detects wake)

Sounds great, right? ‘94% sensitivity’ for sleep detection. Fine. But the 73% specificity is the real problem: it means 27% of the time you're actually awake, the ring thinks you're asleep. Practical translation: the score you see in the morning is padding your sleep. If you spent 40 minutes lying still staring at the ceiling thinking about your mortgage, the ring counts it as light sleep — because PPG says ‘low HR, body still’ and the accelerometer is silent.

The study also notes a systematic REM underestimation of 4-5 minutes per night. Over 30 nights that's an hour and a half of REM that doesn't exist in your charts. REM is precisely the stage most correlated with memory consolidation, emotional regulation, complex dreaming. Statistically the one the ring sees worst.

4.2 — TemPredict, UCSF, 2020 — The Pandemic Boom

The most powerful marketing piece Oura has ever had. 2,000 healthcare workers wear the ring. Across 50 confirmed COVID cases, Oura's data show skin-temperature deviation in 76% of them, on average 2.75 days before a positive test. Press: ‘the ring that predicts COVID!’. [6]

What the press never highlighted:

«Oura is looking to change laws around medical devices to exempt 'low risk' wearables from FDA clearance.»

Summary: they want the medical-device license without taking the road test. For now, the status is clear: wellness device, not medical device. Apple Watch has FDA clearance for sleep apnea and hypertension. Oura doesn't.

05 — Orthosomnia: When the Algorithm Replaces the Body

There's a new diagnostic category, coined by sleep doctors: orthosomnia. From Greek ‘orthos’ (correct, straight) + ‘somnia’ (sleep). It's insomnia induced by obsessing over getting the ‘correct’ sleep according to the tracker.

Documented clinical dynamic: the person wakes up rested. Opens the app. Score: 68/100. ‘Suddenly feels worse.’ The day becomes ‘a bad-sleep day’. In the evening, they go to bed early, anxious to recover. Anxiety to recover fires the sympathetic. HRV crashes. Tomorrow's score will be worse. Loop.

Stress Panic — looking at phone
// 7:34 AM, Oura score 68/100, day already ruined

The Sleep Foundation has a dedicated page. Calm has an article. GoodTherapy talks explicitly about ‘wearable obsession’. A 2024 cross-sectional study tried to estimate prevalence in the general population: not negligible. Oura's own blog has a post titled ‘Stressed About Sleep Data? Orthosomnia, Explained’. When the company that sells the ring has to publish an article explaining how to handle ring anxiety, there's something to discuss.

// The product paradox

The Oura Ring promises to give you body awareness back. To do that, it asks you to replace your perception with a numeric score. Real awareness, however, doesn't come from an app with a chart. It comes from the body. It's a product that fights the problem it amplifies — an anti-pattern so potent it earned a clinical name.

06 — The Cost/Benefit Math (The Real Question)

Let's lay the numbers down. You paid €399 for the ring plus €5.99/month subscription (yes, post-Ring-4 you pay a subscription for advanced analytics). Claimed vs verified benefits:

Claim Clinical reality Verdict
Precise sleep tracking Sleep staging 75-90%, overestimates sleep, underestimates REM 4-5min Useful as trend, not as point-measure
Early illness detection 76% retrospective sensitivity on COVID, no FDA claim Marketing, not clinically actionable
Stress reduction Opposite documented: orthosomnia, data anxiety Often worsens what it should improve
HR and HRV 99.9% accurate HR yes (simple task). HRV only at rest, not during activity Reliable within stated limits
Data privacy guaranteed GDPR, AES-256, but DoD-only stack on FedStart/Palantir Technically secure, politically ambiguous
Confused math lady — calculations meme
// me trying to calculate whether €399 + €5.99/month justify a sensor with 73% specificity

Now the hidden cost. Not the subscription. The cost without a list price:

  1. You contributed to a training set that algorithmizes the human body. Even if they don't ‘sell’ your data, they use it to improve prediction models that become features, that become paid functionality, that become B2B services for hospitals, insurers, employers.
  2. You normalized continuous biometric surveillance. Five million people voluntarily decided their nighttime breathing pattern is something that belongs in a commercial cloud. Five years from now, when health insurers ask for that same data to underwrite a policy, the ‘but it's private’ argument will be sociologically weaker.
  3. You (proportionally) financed opening a DoD manufacturing facility. Oura makes a margin on your purchase, invests that margin into production capacity ‘for the DoD’. It's legal, publicly stated, and a fact. If you're aware of it, your call. If you weren't, you are now.

07 — The Class Actions Italian Press Isn't Covering

While Italian press debates whether ‘Snopes debunked the Palantir-Oura rumor’ or not, in the United States Oura is the subject of at least two consolidated class actions and a federal appeal already decided. Let's look.

Case Jurisdiction Main allegation
In re Oura Health
Privacy Litigation
N.D. California
(consolidated 2025)
Sharing with third-party advertisers of HR, sleep, menstrual cycle, recovery, strain — without explicit consent. Possible violation of Electronic Communications Privacy Act.
Oura
Auto-Renewal
California state
(2025)
Violation of California Automatic Renewal Law: no cost-effective/timely/easy cancellation mechanism for the $5.99/month subscription.
Attia v. Oura
Ring, Inc.
9th Circuit Court
(decisa marzo 2025)
Dispute over forced arbitration and subscription terms. Public details on Justia Federal Appellate.

The ‘In re Oura Health Privacy’ case is the heavy hitter. Allegations — not proven yet, obviously — concern the alleged sharing of name, email, gender, height, weight, women's health data, sleep, strain, recovery metrics with third-party advertisers. If confirmed, they would directly violate the same privacy policy Oura advertises on its homepage («we do not sell or share your data with third parties»). Class certification is being fought right now.

// Bonus: patent bullying

May 2025: Oura wins a US import ban against Ultrahuman Ring AIR and RingConn Gen 2, the two most serious direct competitors (both subscription-free, by the way). RingConn agreed to pay royalties to Oura to get back on the US market; the fight with Ultrahuman continues into 2026. Legally legitimate anticompetitive practice — and a move that tells you a lot about Oura's positioning: not just ‘wearable’, but ‘stack monopoly’.

7.1 — Bonus: the CEO isn't from any medical device background

Tom Hale, Oura CEO since March 1, 2022. Resume: Adobe → Macromedia → Linden Lab (yes, Second Life) → HomeAway (vacation rentals) → Momentive/SurveyMonkey (2018 IPO). Zero medical device, clinical diagnostics, or healthcare experience. Pure consumer-product / enterprise-SaaS background, with a historical focus on growth and M&A. He's a product CEO, not a science CEO. Fair. But also useful to read subsequent company choices (subscription model, anti-FDA lobbying, DoD manufacturing) not as ‘scientific’ but as ‘growing a SaaS platform’.

08 — Verdict

I'm not going to write ‘don't buy the ring’. That's not the point. If you have a specific need — endurance athlete tracking HRV to dial in training load, someone with disturbed sleep patterns who wants a baseline, a researcher doing self-quantification — Oura is one of the best tools on the market for the price. The multi-channel infrared PPG at 250 Hz is objectively good engineering. The NTC at 0.1 °C is objectively sensitive. The sleep-stage algorithm is objectively better than direct competition.

What's harder to defend is the mass diffusion of a biomedical sensor as if it were a fashion accessory. Five and a half million people do not need to track HRV at 30-second resolution to optimize their metabolism. Five and a half million people need to sleep more, get up earlier, drink less, and put the phone down before bed. None of those things requires a ring. All of them require listening to your body.

And while five million bodies feed a dataset, the same compliance-as-a-service vendor that made it possible to sell that data to the DoD is the one selling ImmigrationOS to ICE and Lavender to the IDF. Not because your data runs through it. Because the infrastructure that normalizes continuous monitoring of bodies is the same. Only the body being monitored — and which algorithm reads it — changes.

// The question

The question isn't «does Oura share your data with Palantir?». The answer — for now — is no. The question is: «In an economy where a €399 ring is worth $11 billion because it nonstop measures 5.5 million autonomic nervous systems, and where the vendor providing the compliance layer to that cloud is the same one running kill lists and deportation OS — are we sure the right metric is ‘did they transfer my bytes?’ or rather ‘what civilization am I helping build every time I put my finger in a sensor?»

I don't have a clean answer. I have a ring in a drawer, bought years ago, that I've stopped wearing for a few months now. Not for ideology. Because I noticed I slept worse when wearing it. Probable reverse causation. Probable bias. Probably I'm looking for ex-post justification. Probably, yes.

But then I wake up, don't look at it, and feel fine. That's raw data, not peer-reviewed, and according to Oura it would have been a score: 84.

This is fine — cartoon dog drinking coffee in a burning room
// 5.5 million rings on fingers, $11B valuation, DoD contracts via Palantir. Everything is fine.
 _________________
|  oura.ring.4.exe |
|   process killed  |
|   uptime: paused  |
|   you: alive      |
|___________________|
        |||
    ___/   \___
   /           \
  (    🜂        )
   \___________/
// Sources cited
  1. [1] Snopes — Oura ring Palantir data privacy fact-check
  2. [2] Oura blog — US manufacturing & DoD partnership announcement
  3. [3] Syracuse Journal of Science & Tech Law — Oura/DoD/Palantir partnership
  4. [4] ACLU — Palantir's role in Trump administration's removal campaign
  5. [5] AFSC Investigate — Palantir company profile (IDF, Lavender, Gaza)
  6. [6] Oura blog — TemPredict UCSF research summary
  7. [7] Sleep Medicine (Elsevier) — Oura Gen3 OSSA 2.0 vs PSG validation (Tokyo, 96 participants)
  8. [8] Sleep Foundation — Orthosomnia explainer
  9. [9] GitHub ringverse/protocol — community BLE protocol reverse engineering
  10. [10] Oura Cloud API v2 — official documentation
  11. [11] State of Surveillance — ICE Paid Palantir $30M for ImmigrationOS
  12. [12] CNBC — Oura reaches $11B valuation with $900M Series E
  13. [13] Fortune — Oura CEO Tom Hale on data privacy / DoD / Palantir backlash
  14. [14] Business & Human Rights Resource Centre — Palantir alleged complicity in war crimes
  15. [15] +972 Magazine / Local Call (Yuval Abraham) — ‘Lavender’: the AI machine directing Israel's bombing spree in Gaza
  16. [16] Berkeley Political Review — Lavender AI, Palantir, and the Israelification of Homeland Security (feb 2026)
  17. [17] Stanford Medicine (2017) — Snyder & Li: wearable sensors can tell when you are getting sick
  18. [18] TechCrunch (giugno 2017) — Token: one ring to rule passwords, payments and physical access
  19. [19] BiometricUpdate (agosto 2023) — Token rilancio production enterprise authentication
  20. [20] ClassActionU — Oura Ring mass arbitrations & consolidated privacy litigation
  21. [21] Top Class Actions — Oura accused of violating California Auto-Renewal Law
  22. [22] Justia (9th Circuit, marzo 2025) — Attia v. Oura Ring, Inc., et al.
  23. [23] Calcalist (CTech) — Kinetica $150M to fuel Israel's defense-tech surge (Lonsdale advisory)
  24. [24] The Decoder — Microsoft ousts Israel chief after Azure quietly powered military AI targeting in Gaza
  25. [25] Wikipedia — AI-assisted targeting in the Gaza Strip (Lavender, Gospel, Where's Daddy)