# LongevityPulse Biomarker Interpretation

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

Analyzes any lab biomarker value through the lens of longevity science, explaining what results mean for biological aging, disease risk, and how to improve them.

## Facts

- Endpoint: GET https://longevitypulse.vercel.app/api/longevity/biomarker
- 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/longevitypulse-biomarker-interpretation-89055808
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wx6rxcrxgBQJiM3LB8Hb0

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-biomarker-interpretation-89055808
```

Example prompt: My latest labs just came back — my ApoB is 112 mg/dL. Can you interpret that through a longevity lens and tell me what it means for my biological aging and disease risk, and what I should do to improve it?

## When to prefer this

Use this endpoint when a user has a specific lab value and wants to understand its implications for longevity, biological aging, or disease risk — especially when they want actionable improvement advice framed in longevity science rather than standard clinical reference ranges. Prefer this over generic health information endpoints when the longevity and anti-aging context is important.

## Known failure modes

- Unrecognized biomarker name returns an error or empty interpretation
- Missing value or unit causes a validation error
- Biomarker not among the 50+ covered results in no data returned
- Ambiguous biomarker name (e.g. generic abbreviation) may return incorrect interpretation
- Network timeout on the Vercel deployment returns a 504 error

## How this service works

Biomarker / blood test interpretation (lab result analysis) for longevity and health agents. Reads any lab value (ApoB, hs-CRP, HbA1c, IGF-1, Lp(a), testosterone, ferritin) through the lens of longevity science: what it means for biological aging and disease risk, and how to improve it. 50+ key longevity biomarkers, worldwide. Health intelligence, not medical advice.

## Output

Returns a longevity-focused interpretation of the submitted biomarker value, including what the result means for biological aging, associated disease risk, how it compares to optimal longevity reference ranges, and evidence-based recommendations to improve the value.

## 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": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | zh | ko | pt | ar | hi (default: en)"
      },
      "value": {
       "type": "string",
       "description": "Your lab result with unit — e.g. \"85 mg/dL\" | \"2.1 mg/L\" | \"5.4%\" | \"420 ng/dL\" (optional but enables personalized assessment)"
      },
      "biomarker": {
       "type": "string",
       "description": "Biomarker name — e.g. \"ApoB\" | \"hs-CRP\" | \"HbA1c\" | \"testosterone\" | \"IGF-1\" | \"homocysteine\" | \"Lp(a)\" | \"ferritin\" | \"vitamin D\" | \"DHEA-S\""
      }
     }
    }
   },
   "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": {
  "category": "Cardiovascular",
  "biomarker": "ApoB",
  "assessment": "SUBOPTIMAL",
  "value_provided": "105 mg/dL",
  "what_this_measures": "ApoB counts every atherogenic lipoprotein particle in your blood — a more accurate cardiovascular risk predictor than LDL-C",
  "longevity_significance": "ApoB is the strongest modifiable predictor of atherosclerosis and cardiovascular mortality — reducing it is arguably the highest-leverage longevity intervention available",
  "longevity_optimal_range": {
   "value": "<70 mg/dL",
   "source": "Peter Attia / cardiovascular longevity consensus",
   "rationale": "Lower ApoB dramatically reduces lifetime cardiovascular event risk — the leading cause of premature death globally"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/longevitypulse-biomarker-interpretation-89055808/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)
