# FitPulse Race Training Plan Generator

> FitPulse Race Training 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 periodized race training plan built backwards from a target event date, including taper and race-day strategy for athletes.

## Facts

- Endpoint: GET https://fitpulse-vert.vercel.app/api/fit/race
- 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-race-training-plan-generator-60684a7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZKR42m3KvFW5NQZfh16Ms

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-race-training-plan-generator-60684a7b
```

Example prompt: Build me a periodized race training plan for a half marathon on September 21st — I can train 5 days a week, I'm an intermediate runner, and I want a proper taper in the final two weeks plus race-day strategy.

## When to prefer this

Choose this endpoint when an athlete or coaching agent needs a full, periodized training plan anchored to a specific race date, complete with taper and race-day strategy — as opposed to a generic weekly workout plan or a rehab protocol. Best for runners, triathletes, or endurance athletes preparing for a defined event.

## Known failure modes

- Missing or invalid event date returns an error — date must be in the future
- Unsupported race distance or unrecognized event type may result in a generic or empty plan
- Insufficient lead time between current date and event date may produce a compressed or suboptimal plan
- Invalid athlete profile parameters (e.g. negative training days) return a validation error
- Network or service errors from the Vercel deployment return a 5xx response

## How this service works

Race training plan / marathon & 5K prep by race date: build a plan backwards from event day. Returns periodization, weekly mileage, taper, and race-day strategy tuned to race type, date, current fitness, and runs per week. Fitness-info for athlete and coaching agents.

## Output

Returns a structured race training plan built backwards from the event date, including a week-by-week periodization schedule, deload/taper phase timing, and a race-day execution strategy tailored to the athlete's profile and distance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "race_date",
  "race_type"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "Response language"
  },
  "race_date": {
   "type": "string",
   "description": "Race date (YYYY-MM-DD) — plan is built backwards from this date"
  },
  "race_type": {
   "type": "string",
   "description": "Race type (5K, 10K, half-marathon, marathon, triathlon-sprint, triathlon-olympic, ironman, OCR)"
  },
  "runs_per_week": {
   "type": "string",
   "description": "Available training days per week"
  },
  "current_fitness": {
   "type": "string",
   "description": "Current fitness level and recent training context"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "race_type": "half-marathon",
  "taper_plan": "2-week taper, reduce volume 40-60%",
  "weeks_to_race": 12
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fitpulse-race-training-plan-generator-60684a7b/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)
