Calm

Calm is an American digital wellness company headquartered in San Francisco that builds a mobile and web app focused on mindfulness, meditation, sleep, and mental health. Founded in 2012 by Michael Acton Smith and Alex Tew, Calm offers guided meditations, Sleep Stories (long-form bedtime audio often narrated by celebrities), breathing exercises, mindfulness courses, music for focus and sleep, and a Daily Calm session. The consumer Calm app is distributed through the iOS App Store and Google Play under a freemium subscription model. The company also operates two B2B products. Calm Business sells the consumer experience to employers as an employee wellness benefit, and Calm Health is a clinical mental health offering for health plans and large self-insured employers, with structured programs aligned to clinical needs. Both B2B products are powered by the Calm Partner API (auth.calm.com/v0), a small OAuth 2.0 client-credentials REST surface that partner systems use to provision, link, and cancel Calm subscriptions for their members or employees. Partners also integrate via SAML 2.0 IdP-initiated SSO and SFTP-uploaded eligibility files (CSV at sftp.ws.calm.com:/inbound/eligibility/). Calm publishes a handful of open-source utilities under github.com/calm — primarily iOS audio/video helpers (PersistentStreamPlayer, KenBurns) and React-Intl ESLint plugins — but there is no public consumer-facing developer API.

1 APIs 16 Features
MindfulnessMeditationSleepMental HealthWellnessDigital HealthMobile AppConsumerEmployee WellnessDigital TherapeuticsB2B

APIs

Calm Partner API

OAuth 2.0 client-credentials REST API used by Calm Business and Calm Health partners to provision and revoke Calm subscriptions for partner end users. Three operations cover the...

Collections

Features

Guided meditations across stress, anxiety, focus, and self-care libraries
Sleep Stories — long-form bedtime audio narrated by well-known voices
Daily Calm — a fresh 10-minute guided meditation every day
Breathing exercises and breathwork programs
Mindfulness and emotional-skill courses
Calm Music — curated music for focus, relaxation, and sleep
Calm Kids content library for children
Soundscapes and nature audio
Calm Business — employer-paid Calm benefit for employee wellness
Calm Health — clinical mental health programs for health plans and self-insured employers
Partner API with OAuth 2.0 client_credentials for subscription provisioning
Partner SAML 2.0 IdP-initiated SSO with unique SubjectNameId
SFTP eligibility file ingestion (CSV) at sftp.ws.calm.com:/inbound/eligibility/
Partner Portal for administration, reporting, and segmentation
iOS and Android apps plus a web experience at calm.com
Available on Apple Watch, Apple TV, and Amazon Alexa

Semantic Vocabularies

Calm Com Context

16 classes · 2 properties

JSON-LD

Example Payloads

Calm Authorize Example

2 fields

EXAMPLE

Calm Cancel User Example

2 fields

EXAMPLE

Calm Link User Example

2 fields

EXAMPLE

Resources

🔗
Website
Website
🌐
Portal
Portal
📝
Signup
Signup
💰
Pricing
Pricing
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🔗
Product
Product
🔗
Product
Product
🔗
Product
Product
💬
Support
Support
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy
📰
Blog
Blog
🔗
Press
Press
🔗
Careers
Careers
🔗
Contact
Contact
🔗
AppStoreApple
AppStoreApple
🔗
AppStoreGoogle
AppStoreGoogle
🔗
Twitter
Twitter
🔗
LinkedIn
LinkedIn
🔗
Instagram
Instagram
👥
YouTube
YouTube
🔗
Facebook
Facebook
👥
GitHubOrganization
GitHubOrganization

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Calm Partner API
  version: '0'
items:
- info:
    name: Authentication
    type: folder
  items:
  - info:
      name: Authorize Partner Service
      type: http
    http:
      method: POST
      url: https://auth.calm.com/v0/authorize
      body:
        type: json
        data: '{}'
    docs: Exchange a provisioned client_id and client_secret for a short-lived JWT access token. The token is required to
      authenticate subsequent Partner API calls.
- info:
    name: Subscriptions
    type: folder
  items:
  - info:
      name: Link Partner User to Calm Subscription
      type: http
    http:
      method: POST
      url: https://auth.calm.com/v0/b2b/users/link
      body:
        type: json
        data: '{}'
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Provision a Calm subscription linked to a unique partner user. Returns a one-time-use link that redirects the end
      user into the Calm signup/login flow.
  - info:
      name: Cancel Partner User Subscription
      type: http
    http:
      method: DELETE
      url: https://auth.calm.com/v0/b2b/users/:partner_user_id
      params:
      - name: partner_user_id
        value: ''
        type: path
        description: Unique identifier for the user within the partner's system.
      auth:
        type: bearer
        token: '{{bearerToken}}'
    docs: Cancel the Calm subscription associated with a partner user so it will not auto-renew. Returns the cancellation
      status and expiry timestamp.
bundled: true