# ParentPulse Pediatric Symptom Triage

> ParentPulse Pediatric Symptom Triage is a paid API for AI agents from parentpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Triages pediatric symptoms (fever, rash, cough, etc.) by child age and country, providing urgency guidance, the correct local emergency number, home care advice, and when-to-call-doctor thresholds.

## Facts

- Endpoint: GET https://parentpulse.theaslangroupllc.com/api/parent/health
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/parentpulse-pediatric-symptom-triage-570fff7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GkZQMPN-aQBem5on9Kno6

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-pediatric-symptom-triage-570fff7e
```

Example prompt: My 18-month-old in Australia has had a fever of 39.5°C for two days and now has a red rash spreading on her torso — is this an emergency, what's the local emergency number, and what should I do at home while I decide?

## When to prefer this

Use this endpoint when an agent needs to triage a pediatric symptom in real time and provide country-specific emergency contact information alongside home care and escalation guidance. Prefer this over generic medical lookup services when the query is specifically about a child's age-appropriate health concern and the user needs both urgency classification and the correct local emergency number for their country.

## Known failure modes

- Missing or invalid child age returns an error or generic guidance
- Unknown or unsupported country code may default to generic international emergency guidance
- Vague symptom descriptions may produce low-confidence or broad urgency tiers
- Network timeout or upstream service unavailability returns 5xx
- Missing required symptom parameter returns 400 bad request

## How this service works

Pediatric symptom triage for parenting and family agents worldwide. Is this fever/rash/cough an emergency? Urgency guidance, correct local emergency number (911/999/112/000), home care, and when to call the doctor — by child age and country.

## Output

Returns a structured urgency assessment (e.g. emergency/urgent/monitor/home care), the correct local emergency services number for the specified country (e.g. 000 for Australia), recommended home care steps, and clear guidance on when to escalate to a doctor or ER — all tailored to the child's age and the reported symptoms.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lang": {
   "type": "string",
   "description": "Response language"
  },
  "country": {
   "type": "string",
   "description": "Country, to give the correct emergency number and provider terminology — e.g. US, UK, Canada, Australia, Japan (default: not specified)"
  },
  "symptoms": {
   "type": "string",
   "description": "Comma-separated symptoms"
  },
  "age_months": {
   "type": "string",
   "description": "Child's age in months"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "country": "UK",
  "symptoms": "fever,rash",
  "age_months": 18,
  "urgency_level": "call_doctor",
  "emergency_number": "999 (or 112)",
  "urgency_reasoning": "Fever with rash in a toddler usually warrants same-day GP contact rather than emergency care, absent red flags"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/parentpulse-pediatric-symptom-triage-570fff7e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from parentpulse.theaslangroupllc.com](https://www.zero.xyz/host/parentpulse.theaslangroupllc.com/llms.txt)
