# LongevityPulse Protocol Builder

> LongevityPulse Protocol Builder is a paid API for AI agents from longevitypulse.vercel.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Generates a personalized longevity protocol combining exercise, nutrition, sleep, stress management, and supplements tailored to age, sex, goals, budget, and food culture.

## Facts

- Endpoint: GET https://longevitypulse.vercel.app/api/longevity/protocol-builder
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/longevitypulse-protocol-builder-048486b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UEzN4KcELfRAwHwMSt6_Z

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 longevitypulse-protocol-builder-048486b2
```

Example prompt: Build me a full personalized longevity protocol — I'm a 42-year-old woman, focused on healthspan and cognitive longevity, moderate budget, eat mostly Mediterranean food, and I want recommendations across Zone 2 cardio, strength training, VO2 max, nutrition, sleep, stress, and supplements.

## When to prefer this

Choose this endpoint when you need a holistic, multi-domain longevity protocol that integrates exercise, nutrition, sleep, stress, and supplements in a single personalized response — especially when the user's age, sex, budget, and cultural food preferences need to be factored in simultaneously. Prefer alternatives if the user only needs guidance on one isolated domain (e.g. supplement-only or diet-only analysis, which have dedicated sibling endpoints).

## Known failure modes

- Missing required parameters such as age or sex returns an error
- Unsupported or unrecognized food culture values may produce generic nutrition guidance
- Extremely low budget constraints may limit supplement and protocol recommendations
- Service unavailability returns a 5xx error from the Vercel deployment

## How this service works

Longevity / healthspan protocol builder (personalized anti-aging plan) for longevity and biohacker agents. Combines exercise (Zone 2, strength, VO2 max), nutrition, sleep, stress, and supplements, adapting to age, sex, goals, budget, and food culture worldwide. Health intelligence, not medical advice.

## Output

A comprehensive, personalized longevity protocol covering exercise zones (Zone 2, strength, VO2 max), nutrition guidelines, sleep optimization, stress management strategies, and a supplement stack — all adapted to the user's age, sex, goals, budget, and food culture.

## 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",
     "properties": {
      "age": {
       "type": "string",
       "description": "Age in years — e.g. \"45\" | \"60\" | \"35\""
      },
      "sex": {
       "type": "string",
       "description": "Biological sex for hormonal context — \"male\" | \"female\""
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | zh | ko | pt | ar | hi (default: en)"
      },
      "goals": {
       "type": "string",
       "description": "Primary longevity goals — e.g. \"maximize healthspan\" | \"reverse biological age\" | \"cardiovascular health\" | \"cognitive longevity\" | \"muscle preservation\""
      },
      "budget": {
       "type": "string",
       "description": "Monthly budget for longevity optimization — e.g. \"low\" | \"moderate\" | \"high\" | \"$200/month\""
      },
      "region": {
       "type": "string",
       "description": "Optional audience region/country (e.g. \"UK\") — surfaces region-specific supplement retailers"
      },
      "conditions": {
       "type": "string",
       "description": "Any health conditions — e.g. \"type 2 diabetes\" | \"hypertension\" | \"none\" (optional)"
      }
     }
    }
   },
   "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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "exercise": {
   "zone_2_cardio": {
    "what": "Heart rate 130-150 bpm (220-age × 0.65-0.75)",
    "duration": "45-60 minutes",
    "frequency": "4x per week"
   }
  },
  "supplements": {
   "tier_1_strong_evidence": [
    {
     "dose": "5000 IU D3 + 100mcg K2 daily",
     "rationale": "Deficiency near-universal in indoor-working adults; affects cardiovascular, bone, and immune longevity",
     "supplement": "Vitamin D3 + K2"
    }
   ]
  },
  "profile_summary": "52-year-old male seeking to maximize healthspan and reverse biological aging, moderate budget",
  "protocol_philosophy": "Cardiovascular fitness and metabolic health are the highest-leverage interventions for this profile"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/longevitypulse-protocol-builder-048486b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from longevitypulse.vercel.app](https://www.zero.xyz/host/longevitypulse.vercel.app/llms.txt)
