# Magent Laughon 2011 Simplified Bishop Score Calculator

> Magent Laughon 2011 Simplified Bishop Score 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).

Computes the Laughon 2011 three-parameter simplified Bishop score (0–9) from caller-assigned dilation, station, and effacement integers, and returns a favorable cervical ripening indicator

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/simplified_bishop
- 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-laughon-2011-simplified-bishop-score-calculator-ac1c6423
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AEFxSjwru0TbKIr1wxrZi

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-laughon-2011-simplified-bishop-score-calculator-ac1c6423
```

Example prompt: Calculate the Laughon 2011 simplified Bishop score for a patient with dilation points 2, station points 1, and effacement points 2 — is the score favorable for induction?

## When to prefer this

Use this endpoint when you have already binned cervical exam measurements into the Laughon 2011 0–3 integer scale for dilation, station, and effacement, and need a fast, auditable three-parameter simplified Bishop score without consistency or position components. Prefer it over full five-parameter Bishop calculators when clinical context follows the Laughon 2011 simplified model, or when only these three parameters are available.

## Known failure modes

- Missing required parameter (dilation, station, or effacement) returns a 400-level error
- Integer value out of 0–3 range may cause validation error or unexpected score
- Misassignment of raw clinical measurements (cm, %, fetal station) to the pre-binned integer scale by the caller will produce incorrect scores
- Network timeout or server error returns a 5xx response

## How this service works

Laughon 2011 simplified Bishop score from three caller-assigned Bishop 1964 integers: dilation, station, and effacement (each 0-3; max 9). Paper bins: dilation 0 / 1-2 / 3-4 / 5-6 cm; station -3 / -2 / -1 or 0 / +1 or +2; effacement 0-30 / 40-50 / 60-70 / 80%. favorable iff score >5 (Laughon compared with original Bishop >8; PPV 87.7% in that paper). magent does not examine the cervix or add consistency or position. Not a cervical exam or induction order.

## Output

Returns a numeric simplified Bishop score (0–9) summed from the three input integers, plus a favorable boolean indicating whether the score exceeds 5, consistent with the Laughon 2011 paper's PPV of 87.7% against original Bishop >8.

## 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": [
      "dilation",
      "station",
      "effacement"
     ],
     "properties": {
      "station": {
       "type": "integer",
       "description": "Caller-assigned Bishop 1964 station points 0-3 (paper bins: -3 → 0; -2 → 1; -1 or 0 → 2; +1 or +2 → 3). magent does not assign station."
      },
      "dilation": {
       "type": "integer",
       "description": "Caller-assigned Bishop 1964 dilation points 0-3 (paper bins: 0 cm → 0; 1-2 cm → 1; 3-4 cm → 2; 5-6 cm → 3). magent does not measure dilation."
      },
      "effacement": {
       "type": "integer",
       "description": "Caller-assigned Bishop 1964 effacement points 0-3 (paper bins: 0-30% → 0; 40-50% → 1; 60-70% → 2; 80% → 3). magent does not measure effacement."
      }
     }
    }
   },
   "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-laughon-2011-simplified-bishop-score-calculator-ac1c6423/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)
