Skip to content
AFAIFitnessAPI
Compliance

Apple App Store Health Data Rules: What You Need to Ship a HealthKit App

Updated July 14, 2026

To ship an iOS health app or use HealthKit, Apple requires a privacy policy in the app and App Store Connect, bans using health data for advertising or data-mining, bans selling it to third parties, and requires in-app account deletion if you offer accounts. These are contractual App Store rules, not law, and don't replace GDPR or state-law obligations. This is general guidance, not legal advice, and Apple renumbers its guidelines often, so verify the current section text.

Apple lets you build health apps and use HealthKit, but only if you follow a specific set of privacy rules baked into the App Store Review Guidelines. The short version: you must publish a privacy policy, you must never use health data for advertising or data-mining, you must not sell it, and if your app has accounts you must let users delete theirs from inside the app. These are Apple's contractual rules, not law, and they sit on top of any legal obligations you have (GDPR, state consumer-health laws) rather than replacing them. This page is general engineering guidance, not legal advice — confirm the current guideline text before you submit, because Apple renumbers sections often.

Does this apply to you?

If your iOS app touches health or fitness data, yes. The rules bite hardest on apps that use these Apple frameworks:

  • HealthKit (steps, heart rate, workouts, sleep, and everything else in the Health app)
  • Clinical Health Records API
  • Motion & Fitness and the MovementDisorder APIs

Data from these sources gets the strictest treatment. But even a fitness app that never touches HealthKit — say, one that only stores workouts you type in — still needs a privacy policy and still faces the general privacy rules in Section 5.1 of the guidelines. There is essentially no version of "health app" that escapes these requirements.

One more scoping point: Apple treats healthcare as a "highly regulated" field, so your app generally must be submitted by a legal entity, not an individual developer account. Verify the current wording, since this sits in the 5.1.1 area and Apple moves it around.

What Apple's rules actually require

The subsection numbers below reflect the guideline structure as of mid-2026. Apple restructures Section 5.1 regularly, so treat every number as approximate and verify the live subsection before you rely on it. The rules themselves are stable even when the numbering shifts.

RequirementWhat it means for your app
Privacy policy is mandatory (guideline 5.1.1(i), verify)Link a privacy policy both in App Store Connect metadata and inside the app. It must say what data you collect, how, and every use; confirm any third parties give equal protection; and explain retention, deletion, and how users revoke consent.
Consent for collection (5.1.1(ii), verify)Get user consent even for anonymized data, offer an accessible way to withdraw it, and write purpose strings that clearly describe why you need the data.
Data minimization (5.1.1(iii), verify)Request only the data types your core features actually need.
No advertising or data-mining (5.1.2 / 5.1.3, verify)Data from HealthKit, Clinical Health Records, Motion & Fitness, and the MovementDisorder APIs may NOT be used for marketing, advertising, or use-based data mining — including by any third party you pass it to.
No selling to data brokers (5.1.3(i), verify)You may not disclose health, fitness, or medical data to third parties for advertising, marketing, or data-mining. Permitted uses are narrow: improving health management, or health research with permission.
Data accuracy + no iCloud (5.1.3(ii), verify)Don't write false or inaccurate data into HealthKit, and don't store personal health information in iCloud. The iCloud rule is easy to miss and often trips teams up — verify the current text.
Account deletion in-app (5.1.1(v), verify)If your app supports account creation, it must let users delete their account AND associated data from within the app. It must also let users disable data access and revoke social-network credentials, and you must not store those credentials or tokens off-device.

The narrow "direct benefit" carve-out

There is one limited exception to the no-sharing rule: an app may share health data for a direct user benefit — the classic example is a reduced insurance premium — but only if the app is submitted by the benefit provider itself AND the data is not shared with any other third party. Do not read this as a general "you can share health data if the user gets something." It is deliberately narrow and conditional.

If you run research

Human-subject research raises the bar. Under guideline 5.1.3 (verify current subsection), you need:

  • Informed consent covering the nature, purpose, and duration of the study; procedures, risks, and benefits; confidentiality and any third-party sharing; a contact; and how to withdraw. Minors need parent or guardian consent.
  • Approval from an independent ethics review board, which Apple can ask you to prove on request.

App Privacy labels and privacy manifests

Two more Apple requirements live outside the review guidelines proper:

  • App Privacy "nutrition labels." The App Store's App Privacy section (introduced in 2020) requires you to disclose all of your data-collection and data-use practices — including those of any third-party SDKs you embed. These labels must match what your app actually does.
  • Privacy manifests and required-reason APIs. [Verify — this area changes.] Since around May 1, 2024, apps and third-party SDKs have been required to declare the data they collect and justify their use of certain "required-reason" APIs in a privacy manifest, with signed SDKs, or App Store Connect can reject the build. Confirm the current requirements and deadlines before you submit.

What this means for a fitness app

  • Ship a privacy policy first. It's mandatory for HealthKit apps and cheap to get right. Cover collection, use, sharing, retention, and deletion. See the health app privacy policy guide for what to include.
  • Wall off health data from your ad stack. Don't pipe HealthKit data — or anything derived from it — into analytics or advertising SDKs. This is a hard prohibition, not a preference.
  • Build in-app account deletion before launch. Retrofitting it later is painful. Deletion has to reach the associated data too, not just the login row.
  • Don't lean on iCloud for health data. Keep personal health information out of iCloud storage; verify the current guideline wording as you architect sync.
  • Remember Apple's rules are not the whole picture. An App Store approval does not make you GDPR- or state-law-compliant. A HealthKit permission prompt is an OS access control, not a legal consent. See health data user consent for the distinction.

For the implementation details of requesting HealthKit permissions and handling the authorization sheet, see the HealthKit integration guide. Building for Android too? The equivalent rules live on the Google Play health data policy page — they overlap heavily but differ in the specifics.

A note on limits

Apple's guidelines are contractual App Store rules, enforced through app review — they are not a substitute for HIPAA, GDPR, or state consumer-health laws, and passing review does not mean you've met those legal obligations. Apple also reorganizes and renumbers Section 5.1 frequently, so the exact subsection letters here may already have shifted; always read the live guideline text at the time you submit. For anything with legal consequences, confirm your obligations with a qualified professional.

Frequently asked questions

Do I need a privacy policy to use HealthKit?
Yes. Under App Review Guideline 5.1.1(i) (verify the current subsection), every app must link a privacy policy in App Store Connect metadata and within the app. It must state what data you collect, how, and every use, and cover retention, deletion, and how users revoke consent. Apps using HealthKit fall squarely under this.
Can I use HealthKit data for advertising or analytics?
No. Data from HealthKit, the Clinical Health Records API, Motion & Fitness, and the MovementDisorder APIs may not be used for marketing, advertising, or use-based data mining, including by any third party you pass it to. This is a hard prohibition in guideline 5.1.2 / 5.1.3 (verify current subsection). Keep health data out of your ad and analytics SDKs.
Can I store health data in iCloud?
Apple's guidelines say you must not store personal health information in iCloud (guideline 5.1.3(ii) as of mid-2026, verify the current text). This rule is easy to miss when designing sync. Confirm the live guideline wording before you architect any cloud storage for health data.
Does my app need in-app account deletion?
If your app supports account creation, yes. Guideline 5.1.1(v) (verify) requires letting users delete their account and associated data from within the app. The deletion has to reach the associated data, not just the login record. Google Play has a similar but distinct requirement.
Do Apple's rules make my app HIPAA or GDPR compliant?
No. Apple's guidelines are contractual App Store rules enforced through app review; passing review does not satisfy HIPAA, GDPR, or state consumer-health laws. A HealthKit permission prompt is an OS access control, not a legal consent. Confirm your separate legal obligations with a qualified professional.

Keep reading

General engineering guidance, last reviewed July 14, 2026. This is not legal, medical, or regulatory advice. Health-data laws (HIPAA, GDPR, state privacy laws) and platform policies vary by jurisdiction and change often, and how they apply depends on your specific product, users, and data. Confirm your obligations with a qualified attorney or compliance professional and check the current official sources before you ship.

← All compliance · by AIFitnessAPI