WHOOP · Schema

WorkoutCollection

Paginated collection of workout activities with next token for pagination

FitnessWearablesHealthRecoverySleepWorkoutStrainHeart RatePerformance

Properties

Name Type Description
records array The collection of records in this page.
next_token string A token that can be used on the next request to access the next page of records. If the token is not present, there are no more records in the collection.
View JSON Schema on GitHub

JSON Schema

whoop-workoutcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/whoop/main/json-schema/whoop-workoutcollection-schema.json",
  "title": "WorkoutCollection",
  "description": "Paginated collection of workout activities with next token for pagination",
  "type": "object",
  "properties": {
    "records": {
      "type": "array",
      "description": "The collection of records in this page.",
      "items": {
        "$ref": "#/components/schemas/WorkoutV2"
      }
    },
    "next_token": {
      "type": "string",
      "description": "A token that can be used on the next request to access the next page of records. If the token is not present, there are no more records in the collection.",
      "example": "MTIzOjEyMzEyMw"
    }
  }
}