HarborHarbor
DocumentationGuidesPlugins
All plugins

WHOOP API

Read WHOOP health data: recovery scores, sleep stages, strain cycles, workouts, and body measurements

APICategory: dataPopularity 52whoop_api

Read WHOOP health data: recovery scores, sleep stages, strain cycles, workouts, and body measurements

Install

hrbr plugins install whoop-api

Harbor calls https://api.prod.whoop.com/developer (driven by the upstream OpenAPI spec).

Quick start

hrbr exec 'return await whoop_api.get({ /* see schema */ })'

Or from a Function:

import { defineOrbitJob } from "@hrbr/orbit";

export default defineOrbitJob({
  name: "whoop-api-example",
  handler: async (ctx) => {
    return await ctx.plugins.whoop_api.list({ limit: 5 });
  },
});

Tools

Tools are generated from the upstream OpenAPI spec. Inspect with:

hrbr plugins tools whoop-api

Or open the dashboard plugin page for the live tool list.