# FitPulse Custom Workout Plan Generator

> FitPulse Custom Workout Plan Generator is a paid API for AI agents from fitpulse-vert.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Generates a personalized weekly workout plan with sets, reps, progression scheme, and gear list based on a user's fitness goal

## Facts

- Endpoint: GET https://fitpulse-vert.vercel.app/api/fit/workout
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fitpulse-custom-workout-plan-generator-35ec6c50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Dc5MCGCr_hkQLW-UlMUCr

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability fitpulse-custom-workout-plan-generator-35ec6c50
```

Example prompt: Can you build me a custom 4-day-per-week workout plan focused on building muscle? I'm an intermediate lifter with access to a full gym, and I want a weekly schedule with sets, reps, progression, and a gear list.

## When to prefer this

Use this endpoint when you need a fully structured, multi-week workout program tailored to a specific fitness goal, rather than a single exercise lookup or form guide. Ideal when the user wants an actionable weekly schedule with progression built in, not just a list of exercises. Prefer over generic fitness search APIs when the output must include periodization-aware sets/reps and a gear list.

## Known failure modes

- Missing or invalid goal parameter returns 400 error
- Unsupported equipment type may produce generic fallback plan
- Ambiguous fitness level inputs may result in mismatched difficulty
- Payment not processed (x402) returns 402 Payment Required
- Overly vague or conflicting goals may yield suboptimal plan structure

## How this service works

Workout plan builder / fitness routine by goal: generate a custom training program. Returns a weekly schedule, sets/reps, progression scheme, and gear list tuned to your goal, available equipment, level (beginner/intermediate/advanced), and days per week. Fitness-info for fitness and training agents.

## Output

Returns a structured weekly workout schedule including day-by-day exercise breakdown, sets and reps for each movement, a progression scheme to track improvement over time, and a recommended gear list tailored to the user's goal and available equipment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "goal"
     ],
     "properties": {
      "days": {
       "type": "integer",
       "description": "Days per week (default: 4)"
      },
      "goal": {
       "type": "string",
       "description": "e.g. muscle-gain, fat-loss, strength, endurance, general-fitness"
      },
      "lang": {
       "type": "string",
       "description": "lang"
      },
      "level": {
       "type": "string",
       "description": "level"
      },
      "equipment": {
       "type": "string",
       "description": "e.g. full gym, dumbbells-only, bodyweight (default: full gym)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fitpulse-custom-workout-plan-generator-35ec6c50/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fitpulse-vert.vercel.app](https://www.zero.xyz/host/fitpulse-vert.vercel.app/llms.txt)
