Skip to content

Plateau Breaker API

Diagnose stalled progress and provide a structured strategy for nutrition and training adjustments.

Endpoint

  • GET /api/v1/fitness/plateau-breaker
  • POST /api/v1/fitness/plateau-breaker/post

Parameters

Name Type Required In Description
goal string Yes Query/Body fat_loss,muscle_gain,maintenance,endurance,recomposition.
weeks_stalled integer (1-24) Yes Query/Body Number of stalled weeks.
calories integer (800-5000) Yes Query/Body Current daily calories.
training_days integer (0-7) Yes Query/Body Weekly training days.
lang string No Query Response language (en,es,de,fr,pt,ja,hi,ar).

Why Use This Endpoint

  • Convert plateau signals into actionable intervention logic.
  • Blend nutrition and volume decisions in one output.
  • Automate check-in based strategy recommendations.

Get Started

Request Example

curl -X GET "https://api.hefitapi.com/api/v1/fitness/plateau-breaker?goal=fat_loss&weeks_stalled=6&calories=1800&training_days=5&lang=en" \
  -H "X-API-Key: YOUR_API_KEY"
curl -X POST "https://api.hefitapi.com/api/v1/fitness/plateau-breaker/post?lang=en" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{"goal":"muscle_gain","weeks_stalled":4,"calories":2850,"training_days":4}'

Response Example

Info

The response example below is for demonstration purposes only. Make a live request to this endpoint to receive the full, real-time, and potentially richer JSON structure.

{
  "goal": "fat_loss",
  "goal_label": "Fat Loss",
  "weeks_stalled": 6,
  "plateau_band": "extended",
  "plateau_band_label": "Extended",
  "calorie_adjustment_strategy": {
    "mode": "temporary_diet_break",
    "delta_kcal": 250,
    "current_calories": 1800,
    "proposed_calories": 2050,
    "mode_label": "Temporary Diet Break",
    "rationale": "Extended stalls may require fatigue reset before renewed deficit."
  },
  "volume_manipulation": {
    "action": "deload_then_rebuild",
    "action_label": "Deload Then Rebuild",
    "rationale": "Reset fatigue then restore progression quality."
  },
  "refeed_or_diet_break_logic": {
    "protocol": "diet_break_7_14_days",
    "frequency": "now",
    "carb_emphasis": "high",
    "protocol_label": "7-14 Day Diet Break",
    "rationale": "Use strategic refeed period before next push phase."
  },
  "next_checkin_window_days": 14,
  "execution_priority": ["Restore performance markers before further cuts"],
  "confidence_score": 83,
  "summary": "Extended stall detected; phased reset strategy recommended.",
  "language": "en",
  "_enterprise": {"client": "Acme Health", "plan": "pro", "request_id": "7277bd95fd8441dc", "quota": 120, "usage_tracking": true},
  "_api_metadata_": {"endpoint_name": "fitness_plateau_breaker", "response_language": "en"}
}

Product Positioning

High-value for online coaching, body recomposition apps, and enterprise progress monitoring flows.

Note

weeks_stalled must be between 1 and 24.