# SLICS Calculator (Subaxial Cervical Spine Injury Classification System)

> SLICS Calculator (Subaxial Cervical Spine Injury Classification System) 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 Vaccaro 2007 SLICS score for subaxial cervical spine injuries from morphology, disco-ligamentous complex status, neurologic status, and cord compression, returning a total score with treatment guidance bands.

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/slics
- 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/slics-calculator-subaxial-cervical-spine-injury-classification-system-6238afa5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_crL9btvkrRdzsQwNY6DEC

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 slics-calculator-subaxial-cervical-spine-injury-classification-system-6238afa5
```

Example prompt: Calculate the SLICS score for a patient with burst morphology, an indeterminate disco-ligamentous complex, incomplete neurologic deficit, and continuous cord compression — what does that score and treatment band come out to?

## When to prefer this

Use this endpoint when you need a fast, rule-based computation of the Vaccaro 2007 SLICS score for subaxial (C3–C7) cervical spine injuries. Prefer it over manual calculation to avoid arithmetic errors. Do not use for thoracolumbar injuries (use TLICS instead), AO Spine classification, or SINS scoring. This endpoint does not analyze imaging or examine patients — the caller must supply pre-determined clinical and radiographic findings.

## Known failure modes

- Missing required query parameter (morphology, dlc, neuro, or continuous_cord_compression) returns a validation error
- continuous_cord_compression set to true when neuro is intact — invalid per Vaccaro 2007 rules, may return error or ignore modifier
- Unrecognized enum value for morphology, dlc, or neuro returns 400
- Payment not included or insufficient USDC results in 402 Payment Required

## How this service works

Vaccaro 2007 SLICS: morphology none 0 / compression 1 / burst 2 / distraction 3 / rotation_translation 4 (single most severe) + dlc intact 0 / indeterminate 1 / disrupted 2 + neuro intact 0 / root 1 / complete 2 / incomplete 3 + continuous_cord_compression +1 only with a deficit. Max 10. Bands 0-3 / 4 / >=5 treatment guidance. Not a surgical order. Not TLICS (thoracolumbar). Not AO spine. Not SINS. magent does not read imaging. Not a medical device.

## Output

Returns the computed SLICS integer total (0–10), the individual component scores for morphology, DLC, and neurologic status, the cord compression modifier, and the treatment guidance band (non-operative for 0–3, indeterminate at 4, operative for ≥5). This is a decision-support output and not a surgical order.

## 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": [
      "morphology",
      "dlc",
      "neuro",
      "continuous_cord_compression"
     ],
     "properties": {
      "dlc": {
       "enum": [
        "intact",
        "indeterminate",
        "disrupted"
       ],
       "type": "string",
       "description": "Caller-assigned disco-ligamentous complex integrity (Vaccaro 2007). intact scores 0; indeterminate scores 1; disrupted scores 2. Not TLICS PLC (0/2/3). magent does not examine the patient or read imaging."
      },
      "neuro": {
       "enum": [
        "intact",
        "root",
        "complete",
        "incomplete"
       ],
       "type": "string",
       "description": "Caller-assigned neurologic status (Vaccaro 2007). intact scores 0; root scores 1; complete scores 2; incomplete scores 3. magent does not examine the patient."
      },
      "morphology": {
       "enum": [
        "none",
        "compression",
        "burst",
        "distraction",
        "rotation_translation"
       ],
       "type": "string",
       "description": "Caller-assigned single most severe injury morphology (Vaccaro 2007). none scores 0; compression scores 1; burst scores 2; distraction scores 3; rotation_translation scores 4. Burst already includes compression; do not sum morphologies. magent does not read imaging."
      },
      "continuous_cord_compression": {
       "type": "boolean",
       "description": "Adds 1 only when neuro is not intact (Vaccaro 2007). Must be false when neuro is intact. true or false. magent does not read imaging."
      }
     }
    }
   },
   "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/slics-calculator-subaxial-cervical-spine-injury-classification-system-6238afa5/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)
