# SINS Score Calculator (Fisher 2010)

> SINS Score Calculator (Fisher 2010) 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 Spinal Instability Neoplastic Score (SINS) integer total from six caller-assigned clinical and radiographic parameters per Fisher 2010.

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/sins
- 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/sins-score-calculator-fisher-2010-5b74bf53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U1oEH18MHOz8jPJzcfu4-

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 sins-score-calculator-fisher-2010-5b74bf53
```

Example prompt: Calculate the SINS score for a patient with a junctional spinal metastasis, mechanical pain, a lytic lesion, subluxation on imaging, greater than 50% vertebral collapse, and bilateral posterolateral involvement.

## When to prefer this

Use this endpoint when you need a programmatic, deterministic computation of the Fisher 2010 SINS integer total from already-adjudicated clinical and radiographic parameters. It is purpose-built for SINS only — not TLICS, not later SOSG stratification tables, and not any other spinal scoring system. Prefer it over general-purpose LLM arithmetic when you need a reliable, auditable numeric output with defined subscores.

## Known failure modes

- Missing required query parameter returns validation error
- Invalid enum value for any parameter returns 400-level error
- Score is only as accurate as caller-assigned inputs — magent does not read imaging or interview the patient
- Does not implement SOSG strata, TLICS, or operative indications — only the raw integer sum

## How this service works

Fisher 2010 SINS. Location junctional 3 / mobile 2 / semirigid 1 / rigid 0. Pain mechanical 3 / occasional_not_mechanical 1 / pain_free 0. Bone lytic 2 / mixed 1 / blastic 0. Alignment subluxation_translation 4 / de_novo_deformity 2 / normal 0. Collapse gt_50 3 / le_50 2 / no_collapse_gt_50pct_body 1 / none 0. Posterolateral bilateral 3 / unilateral 1 / none 0. Max 18. Integer sum only; not later SOSG strata, not TLICS, not an operative order. magent does not read imaging. Not a medical device.

## Output

Returns an integer SINS total (0–18) computed by summing the six subscores: location (0–3), pain (0 or 1 or 3), bone quality (0–2), alignment (0, 2, or 4), collapse (0–3), and posterolateral involvement (0, 1, or 3). Higher scores indicate greater neoplastic spinal instability.

## 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": [
      "location",
      "pain",
      "bone",
      "alignment",
      "collapse",
      "posterolateral"
     ],
     "properties": {
      "bone": {
       "enum": [
        "lytic",
        "mixed",
        "blastic"
       ],
       "type": "string",
       "description": "Caller-assigned bone lesion quality (Fisher 2010). lytic scores 2; mixed scores 1; blastic scores 0. magent does not read imaging."
      },
      "pain": {
       "enum": [
        "mechanical",
        "occasional_not_mechanical",
        "pain_free"
       ],
       "type": "string",
       "description": "Caller-assigned pain (Fisher 2010): pain relief with recumbency and/or pain with movement/loading. mechanical (yes) scores 3; occasional_not_mechanical (occasional pain but not mechanical) scores 1; pain_free scores 0. magent does not interview the patient."
      },
      "collapse": {
       "enum": [
        "gt_50",
        "le_50",
        "no_collapse_gt_50pct_body",
        "none"
       ],
       "type": "string",
       "description": "Caller-assigned vertebral body collapse (Fisher 2010). gt_50 (>50% collapse) scores 3; le_50 (≤50% collapse) scores 2; no_collapse_gt_50pct_body (no collapse with >50% body involved) scores 1; none scores 0. magent does not read imaging."
      },
      "location": {
       "enum": [
        "junctional",
        "mobile",
        "semirigid",
        "rigid"
       ],
       "type": "string",
       "description": "Caller-assigned SINS location (Fisher 2010 Table 8). junctional (occiput-C2, C7–T2, T11–L1, L5–S1) scores 3; mobile (C3–C6, L2–L4) scores 2; semirigid (T3–T10) scores 1; rigid (S2–S5) scores 0. magent does not read imaging."
      },
      "alignment": {
       "enum": [
        "subluxation_translation",
        "de_novo_deformity",
        "normal"
       ],
       "type": "string",
       "description": "Caller-assigned radiographic spinal alignment (Fisher 201
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sins-score-calculator-fisher-2010-5b74bf53/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)
