WHOOP · Schema

PaginatedCycleResponse

WHOOP PaginatedCycleResponse schema

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-paginatedcycleresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/whoop/main/json-schema/whoop-paginatedcycleresponse-schema.json",
  "title": "PaginatedCycleResponse",
  "description": "WHOOP PaginatedCycleResponse schema",
  "type": "object",
  "properties": {
    "records": {
      "type": "array",
      "description": "The collection of records in this page.",
      "items": {
        "$ref": "#/components/schemas/Cycle"
      }
    },
    "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"
    }
  }
}