# NutriPulse GLP-1 Nutrition Companion

> NutriPulse GLP-1 Nutrition Companion is a paid API for AI agents from nutripulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Generates deterministic protein targets, fluid/calorie floors, muscle-preservation plans, micronutrient watchlists, symptom-driven meal adjustments, and prescriber red flags for patients on GLP-1 medications (semaglutide, tirzepatide, liraglutide)

## Facts

- Endpoint: GET https://nutripulse.theaslangroupllc.com/api/nutrition/glp1
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nutripulse-glp-1-nutrition-companion-fc3f5569
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kSgfQ3keL-788LChnNQo2

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 nutripulse-glp-1-nutrition-companion-fc3f5569
```

Example prompt: My patient is a 78kg woman with 30% body fat on semaglutide — can you compute her daily protein target, calorie floor, and fluid minimum, flag any micronutrient risks, and tell me what meal adjustments to make given that she's been experiencing nausea?

## When to prefer this

Choose this endpoint when an agent needs evidence-based, deterministic nutrition guidance specifically tailored to patients on GLP-1 receptor agonists (semaglutide, tirzepatide, liraglutide). It is distinct from general nutrition planning endpoints because it incorporates GLP-1-specific physiological effects (muscle loss risk, GI symptoms, appetite suppression) and provides prescriber-relevant red flags. Prefer it over generic macro calculators when the patient's medication context is known and muscle preservation is a concern.

## Known failure modes

- Missing required body weight input — returns 400 with parameter error
- Invalid or unsupported GLP-1 medication name — returns error indicating supported medications
- Body fat percentage out of physiologically plausible range — validation error
- Service unavailable or payment not processed — 402 or 503 response
- Ambiguous symptom input that cannot be mapped to meal adjustments — returns partial plan with flagged uncertainty

## How this service works

GLP-1 nutrition companion — deterministic protein target (1.2-1.6 g/kg; 1.5 g/kg fat-free mass when body fat is known), fluid and calorie floors computed in code, plus a PubMed-grounded muscle-preservation plan, micronutrient watchlist, symptom-driven meal adjustments, and prescriber red flags for patients on semaglutide, tirzepatide, or liraglutide. Nutrition only; never drug dosing.

## Output

Returns a structured nutrition plan including: deterministic protein target (1.2–1.6 g/kg body weight, or 1.5 g/kg fat-free mass when body fat is provided), calorie and fluid intake floors, a PubMed-grounded muscle-preservation strategy, a watchlist of micronutrients at risk during GLP-1 therapy, symptom-specific meal adjustment recommendations, and any prescriber-relevant red flags — explicitly excluding drug dosing guidance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "drug",
  "weight_kg"
 ],
 "properties": {
  "drug": {
   "type": "string",
   "description": "semaglutide | ozempic | wegovy | tirzepatide | mounjaro | zepbound | liraglutide | saxenda | other"
  },
  "goal": {
   "type": "string",
   "description": "active-loss (default) | maintenance | coming-off"
  },
  "lang": {
   "type": "string",
   "description": "Response language (default en)"
  },
  "symptoms": {
   "type": "string",
   "description": "Comma-separated: nausea, constipation, fatigue, reflux…"
  },
  "weeks_on": {
   "type": "number",
   "description": "Weeks on the medication"
  },
  "weight_kg": {
   "type": "number",
   "description": "Body weight in kg (or pass weight_lb)"
  },
  "body_fat_pct": {
   "type": "number",
   "description": "Optional body fat % — switches protein math to fat-free mass"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nutripulse-glp-1-nutrition-companion-fc3f5569/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nutripulse.theaslangroupllc.com](https://www.zero.xyz/host/nutripulse.theaslangroupllc.com/llms.txt)
