# magent SCOFF Eating Disorder Screen

> magent SCOFF Eating Disorder Screen 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-15).

Computes the Morgan 1999 SCOFF questionnaire score (0–5) from five caller-assigned yes/no flags and returns a screen-positive flag when score ≥ 2

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/scoff
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/magent-scoff-eating-disorder-screen-27304878
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i46yF4UP9v8Ni5fczws3h

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-scoff-eating-disorder-screen-27304878
```

Example prompt: Score this patient's SCOFF questionnaire: they said yes to making themselves sick, yes to feeling food dominates their life, no to losing more than a stone in 3 months, no to believing they're fat when others say they're thin, and yes to having lost control over eating — is the screen positive?

## When to prefer this

Use this endpoint when you need a deterministic, cited implementation of the Morgan 1999 SCOFF questionnaire score computed server-side without having to implement the scoring logic yourself. Prefer it over general LLM scoring when auditability and a published citation are required, or when embedding SCOFF into a clinical decision-support or intake workflow where reproducibility matters.

## Known failure modes

- Missing one or more of the five required boolean query parameters returns a validation error
- Non-boolean values for flag parameters cause a request rejection
- Network timeout on the API endpoint
- Payment failure (x402 protocol) prevents execution

## How this service works

Morgan 1999 SCOFF questionnaire: five caller-assigned yes/no flags (make yourself sick, lost control over eating, lost more than one stone / 14 lb in 3 months, believe fat when others say thin, food dominates life), 1 point each, max 5. Screen-positive when two or more answers are affirmative (score ≥2). Deterministic published score with citation; not a diagnosis of an eating disorder and not a medical device. magent does not interview the patient or interpret individual items.

## Output

Returns a numeric SCOFF score from 0 to 5 (one point per affirmative answer) and a screen-positive boolean or indicator when the score is 2 or greater, based on the published Morgan 1999 threshold. The result is deterministic and cited; it is not a diagnosis.

## 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": [
      "make_yourself_sick",
      "lost_control_over_eating",
      "lost_more_than_one_stone_3_months",
      "believe_fat_when_others_say_thin",
      "food_dominates_life"
     ],
     "properties": {
      "make_yourself_sick": {
       "type": "boolean",
       "description": "Do you make yourself Sick because you feel uncomfortably full? (Morgan 1999). true or false as assigned by the caller. magent does not interview the patient."
      },
      "food_dominates_life": {
       "type": "boolean",
       "description": "Would you say that Food dominates your life? (Morgan 1999). true or false as assigned by the caller. magent does not interview the patient."
      },
      "lost_control_over_eating": {
       "type": "boolean",
       "description": "Do you worry you have lost Control over how much you eat? (Morgan 1999). true or false as assigned by the caller. magent does not interview the patient."
      },
      "believe_fat_when_others_say_thin": {
       "type": "boolean",
       "description": "Do you believe yourself to be Fat when others say you are too thin? (Morgan 1999). true or false as assigned by the caller. magent does not interview the patient."
      },
      "lost_more_than_one_stone_3_months": {
       "type": "boolean",
       "description": "Have you recently lost more than One stone (14 lb) in a 3-month period? (Morgan 1999). true or false as assigned by the caller. magent does not interview the patient."
      }
     }
    }
   },
   "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-scoff-eating-disorder-screen-27304878/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)
