Oura ring paywalls the data behind a subscription, but luckily you can export your data from Oura and import it to Cracked Oura.
Cracked Oura is an open-source desktop application that provides full access to your health metrics, stored locally on your machine.
Key Benefits
- No Subscription: See all of your Oura ring data without subscription.
- Privacy First: Your data is stored locally in an SQLite database. It never leaves your computer unless you export it.
- Advanced Analytics: Visualize trends, correlations, and deeper insights than the standard app provides.
See all of your Oura ring data without subscription. Thanks to EU's right to data portability, you can export your data from Oura and import it to Cracked Oura.
Automation that requests your data from Oura and imports it to Cracked Oura. This populates the local database with your data. Population can also be done manually by importing a zip file from Oura that you can find in https://membership.ouraring.com/data-export.
View your Sleep, Readiness, and Activity scores, etc in a desktop dashboards that is at least as good as the official Oura dashboard. The dashboards can be customized to show the data that you want to see.
Oura's own AI advisor is quite limited. It does not have access to your historical data and cannot answer questions about your health trends, because it has only a few days of data available.
Cracked Oura can leverage local LLMs to analyze your health data and provide insights.
Note
This feature is still experimental, not documented, and under development and will be improved in the future.
-
Download the latest release for your operating system:
- Download for macOS (.dmg)
- Download for Windows (.exe) (Coming Soon)
-
Install & Run the application.
-
Login to your Oura account when prompted to sync your historical data.
Note
Most of the features are still experimental and under development and will be improved in the future.
"App is damaged and can't be opened" (macOS) This is a known Gatekeeper issue because the app is not notarized by Apple. To fix, move the app to your
Applicationsfolder and run this in Terminal:sudo xattr -cr "/Applications/Cracked Oura.app"
Note
This project is not affiliated with, associated with, or endorsed by Oura Health Oy. Use at your own risk.
We welcome contributions.
- Frontend: Electron, React, TypeScript, Tailwind
- Backend: Python, FastAPI, SQLite
# 1. Clone Repository
git clone https://github.com/EIrno/Cracked-Oura.git
cd Cracked-Oura
# 2. Setup Backend
cd backend
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt
# 3. Setup Frontend
cd ../frontend
npm install
npm run devTo create a standalone application installer:
cd frontend
npm run build
# Output will be in frontend/dist-electron/