# NutriPulse Lab Marker Interpretation API

> NutriPulse Lab Marker Interpretation API 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-13).

Interprets blood and metabolic lab markers with nutrition-focused guidance grounded in PubMed research, optionally personalized by age and sex

## Facts

- Endpoint: GET https://nutripulse.theaslangroupllc.com/api/nutrition/labs
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nutripulse-lab-marker-interpretation-api-84a241af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9oHnEUI50lMTZFgKdK1gY

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-lab-marker-interpretation-api-84a241af
```

Example prompt: I just got my bloodwork back — can you interpret these lab results from a nutrition standpoint for a 38-year-old male: ferritin=22, vitamin_D=31, HbA1c=5.7, fasting_glucose=98, LDL=142? Give me guidance in English.

## When to prefer this

Choose this endpoint when you need nutrition-oriented interpretation of blood or metabolic lab markers, especially when the user has actual numeric lab values and wants to understand their health implications from a dietary or supplementation perspective. Prefer this over generic health APIs when PubMed-grounded, evidence-based nutritional context is needed alongside standard lab reference ranges.

## Known failure modes

- Missing required 'markers' parameter returns validation error
- Unrecognized marker names may be skipped or flagged as unknown
- Malformed marker format (not comma-separated key=value pairs) may cause parsing errors
- Empty markers string returns error or empty results
- Unsupported language code may fall back to English or return error

## How this service works

Blood work interpretation for nutrition and health agents. Returns plain-English interpretation with nutritional interventions and supplement options.

## Output

A JSON response containing nutrition-focused interpretations of each submitted lab marker, likely including whether values fall within optimal ranges, what the findings suggest about metabolic or nutritional status, and actionable dietary or supplementation guidance grounded in PubMed research.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "markers"
 ],
 "properties": {
  "age": {
   "type": "string",
   "description": "Age"
  },
  "sex": {
   "type": "string",
   "description": "Sex"
  },
  "lang": {
   "type": "string",
   "description": "Response language (default en)"
  },
  "markers": {
   "type": "string",
   "description": "Comma-separated lab markers and values"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nutripulse-lab-marker-interpretation-api-84a241af/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)
