# magent Rome IV Infant Dyschezia Calculator

> magent Rome IV Infant Dyschezia Calculator is a paid API for AI agents from api.magentlab.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Evaluates the Benninga 2016 Rome IV G6 criteria to determine whether an infant meets the definition of infant dyschezia based on three caller-assigned boolean flags.

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/rome_iv_infant_dyschezia
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/magent-rome-iv-infant-dyschezia-calculator-c0210797
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fcv-rBqWpbmQdGMTkvgiZ

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 magent-rome-iv-infant-dyschezia-calculator-c0210797
```

Example prompt: I have a 6-month-old infant with at least 10 minutes of straining and crying before passing soft stools and no other health problems — does this baby meet the Rome IV G6 Benninga 2016 criteria for infant dyschezia?

## When to prefer this

Use this endpoint when you need a structured, reproducible evaluation of the Rome IV G6 infant dyschezia criteria (Benninga 2016) based on caller-assigned clinical observations. It is distinct from Rome IV functional constipation and from adult Rome IV functional constipation calculators. Prefer this over general clinical text processing when you need a deterministic boolean classification from three discrete flags without ambiguity.

## Known failure modes

- Missing any of the three required boolean query parameters returns a validation error
- Passing non-boolean values for the flags causes a schema validation failure
- Network or payment authorization failure returns a 402 or connection error

## How this service works

Benninga 2016 Rome IV G6 infant dyschezia. rome_iv_infant_dyschezia is true iff infant_less_than_9_months, straining_and_crying_at_least_10_minutes_before_soft_stools, and no_other_health_problems. Caller assigns three flags. magent does not examine the infant. Not a diagnosis, not infant functional constipation, not adult Rome IV FC.

## Output

Returns a boolean field rome_iv_infant_dyschezia indicating whether the infant meets all three Rome IV G6 (Benninga 2016) criteria: age under 9 months, at least 10 minutes of straining and crying before soft stool passage, and no other health problems. The result is true only when all three caller-assigned flags are true.

## 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"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "infant_less_than_9_months",
      "straining_and_crying_at_least_10_minutes_before_soft_stools",
      "no_other_health_problems"
     ],
     "properties": {
      "no_other_health_problems": {
       "type": "boolean",
       "description": "No other health problems, as assigned (Benninga 2016 Rome IV G6). true or false as assigned by the caller. magent does not examine the infant."
      },
      "infant_less_than_9_months": {
       "type": "boolean",
       "description": "Infant less than 9 months of age, as assigned (Benninga 2016 Rome IV G6). true or false as assigned by the caller. magent does not examine the infant."
      },
      "straining_and_crying_at_least_10_minutes_before_soft_stools": {
       "type": "boolean",
       "description": "At least 10 minutes of straining and crying before successful or unsuccessful passage of soft stools, as assigned (Benninga 2016 Rome IV G6). true or false as assigned by the caller. magent does not examine the infant."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/magent-rome-iv-infant-dyschezia-calculator-c0210797/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.magentlab.com](https://www.zero.xyz/host/api.magentlab.com/llms.txt)
