# FitPulse Nutrition & Macro Calculator

> FitPulse Nutrition & Macro Calculator is a paid API for AI agents from fitpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Calculates personalized daily calorie and macronutrient targets plus meal-timing strategy based on fitness goal, body weight, and activity level

## Facts

- Endpoint: GET https://fitpulse.theaslangroupllc.com/api/fit/nutrition
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fitpulse-nutrition-macro-calculator-b7a155cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9bCBqERe9DP0kEkoIIMMa

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-nutrition-macro-calculator-b7a155cd
```

Example prompt: What should my daily calorie and macro targets be for building muscle? I weigh 185 lbs and I work out 4-5 days a week at moderate to high intensity.

## When to prefer this

Use this endpoint when a fitness or nutrition agent needs to compute individualized daily calorie and macro targets alongside meal-timing guidance based on a user's specific goal (e.g. cut, bulk, recomposition, endurance), body weight, and activity level — rather than using generic static nutrition tables or broad dietary guidelines

## Known failure modes

- Missing required parameters (goal, body weight, or activity level) returns a 400 error
- Invalid or unsupported fitness goal enum returns an error
- Payment not completed or invalid x402 payment header returns 402 Payment Required
- Extremely unusual body weight values may produce unreliable outputs
- Server unavailable returns 5xx error

## How this service works

Macro & calorie targets / nutrition by fitness goal: calculate daily intake. Returns macro and calorie targets plus a meal-timing strategy based on goal, body weight, and activity level. Fitness-info for fitness and nutrition agents, not medical advice.

## Output

Returns daily calorie target, macronutrient breakdown (protein, carbohydrates, fat in grams and percentages), and a meal-timing strategy tailored to the user's fitness goal, body weight, and activity level

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "goal"
 ],
 "properties": {
  "goal": {
   "type": "string",
   "description": "e.g. muscle-gain, fat-loss, maintenance, athletic-performance"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "weight": {
   "type": "integer",
   "description": "Body weight in lbs"
  },
  "activity": {
   "type": "string",
   "description": "activity"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "goal": "muscle-gain",
  "daily_targets": {
   "calories": {
    "max": 2900,
    "min": 2600
   },
   "protein_g": {
    "max": 200,
    "min": 160
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fitpulse-nutrition-macro-calculator-b7a155cd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fitpulse.theaslangroupllc.com](https://www.zero.xyz/host/fitpulse.theaslangroupllc.com/llms.txt)
