# ParentPulse Nutrition Guidance API

> ParentPulse Nutrition Guidance API is a paid API for AI agents from parentpulse-delta.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns evidence-based pediatric nutrition guidance including dietary recommendations, feeding schedules, and nutritional needs by child age and context

## Facts

- Endpoint: GET https://parentpulse-delta.vercel.app/api/parent/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/parentpulse-nutrition-guidance-api-bef3fd94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hzkXFXvBksVHO2ylySjW9

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 parentpulse-nutrition-guidance-api-bef3fd94
```

Example prompt: What should my 14-month-old toddler be eating each day — how many meals, what foods, and how much iron and calcium do they actually need at this age?

## When to prefer this

Use this endpoint when you need quick, evidence-based pediatric nutrition guidance organized by child age or developmental stage. It is best suited for parenting agents, family health assistants, or apps that need structured dietary information without building their own content database. Prefer this over general nutrition APIs when child-specific, age-aware guidance is required.

## Known failure modes

- Missing or unrecognized child age parameter may return empty or generic results
- Highly specific medical dietary needs (e.g. allergies, chronic illness) may not be covered
- Response schema is sparse and undocumented, so field names and structure may be inconsistent
- Payment failure (402) if x402 micropayment is not properly handled
- Rate limiting or downtime on Vercel hosting

## How this service works

ParentPulse — child development and parenting intelligence: developmental milestones, nutrition guidance, pediatric health, sleep science, school selection, discipline strategies, childcare cost, and family finance. Evidence-based and globally aware.

## Output

A structured JSON response containing age-appropriate nutrition recommendations for children, including dietary guidelines, portion guidance, key nutrients, feeding schedules, and food safety considerations — grounded in evidence-based pediatric health standards.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lang": {
   "type": "string",
   "description": "Response language"
  },
  "concern": {
   "type": "string",
   "description": "Feeding concern"
  },
  "country": {
   "type": "string",
   "description": "Country, to match the correct feeding-guideline body — e.g. US, UK, Canada, Australia (default: not specified — WHO/general consensus used)"
  },
  "age_months": {
   "type": "string",
   "description": "Child's age in months"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "concern": "picky-eater",
  "country": "not specified",
  "age_months": 18,
  "foods_to_avoid": [
   "Whole grapes/nuts — choking hazard",
   "Honey under 12 months — botulism risk"
  ],
  "guideline_source": "WHO / general pediatric consensus",
  "about_the_concern": {
   "is_common": true,
   "explanation": "Picky eating peaks between 18-36 months as toddlers assert independence"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/parentpulse-nutrition-guidance-api-bef3fd94/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from parentpulse-delta.vercel.app](https://www.zero.xyz/host/parentpulse-delta.vercel.app/llms.txt)
