# Wolfe 2005 Patient Activity Scale (PAS) for Rheumatoid Arthritis

> Wolfe 2005 Patient Activity Scale (PAS) for Rheumatoid Arthritis 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 Wolfe 2005 Patient Activity Scale (PAS) score for rheumatoid arthritis from HAQ disability index, pain VAS, and patient global VAS

## Facts

- Endpoint: GET https://api.magentlab.com/api/calc/pas_ra
- 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/wolfe-2005-patient-activity-scale-pas-for-rheumatoid-arthritis-bb98e9e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kliR5r4zcbZ7Xk_cJmmmI

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 wolfe-2005-patient-activity-scale-pas-for-rheumatoid-arthritis-bb98e9e0
```

Example prompt: Calculate the Wolfe 2005 Patient Activity Scale score for a rheumatoid arthritis patient with a HAQ of 1.5, pain VAS of 6.2, and patient global VAS of 5.8.

## When to prefer this

Use this endpoint when you need a fast, deterministic, arithmetic-only computation of the Wolfe 2005 PAS for rheumatoid arthritis and already have caller-supplied HAQ (0-3 scale, not HAQ-II), pain VAS (0-10), and patient global VAS (0-10) values. Do not use if you need PAS-II, pediatric appendicitis PAS (Samuel 2002), DAS28, CDAI, HAQ administration, severity categorization, or remission cutoffs.

## Known failure modes

- HAQ value out of 0-3 range returns validation error
- pain_vas or patient_global_vas out of 0-10 range returns validation error
- Missing required parameters returns 400-level error
- Payment not provided or insufficient balance returns 402 Payment Required

## How this service works

Wolfe 2005 Patient Activity Scale (PAS): (haq * 3.33 + pain_vas + patient_global_vas) / 3. HAQ 0-3 (not HAQ-II); pain and patient global 0-10 VAS. magent does not administer the HAQ. Not PAS-II, Samuel 2002 pediatric appendicitis PAS, DAS28, or CDAI. Not a diagnosis. PAS total only; no remission or severity cutoffs.

## Output

Returns the computed PAS total score as a single numeric value, calculated as (HAQ × 3.33 + pain VAS + patient global VAS) / 3. No severity cutoffs, remission thresholds, or sub-scores are provided — just the raw composite total.

## 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": [
      "haq",
      "pain_vas",
      "patient_global_vas"
     ],
     "properties": {
      "haq": {
       "type": "number",
       "description": "Caller-assigned HAQ disability index (Wolfe 2005 PAS). Number 0-3. Not HAQ-II. magent does not administer the HAQ."
      },
      "pain_vas": {
       "type": "number",
       "description": "Caller-assigned pain visual analog scale (Wolfe 2005 PAS). Number 0-10. magent does not examine the patient."
      },
      "patient_global_vas": {
       "type": "number",
       "description": "Caller-assigned patient global visual analog scale (Wolfe 2005 PAS). Number 0-10. magent does not examine 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/wolfe-2005-patient-activity-scale-pas-for-rheumatoid-arthritis-bb98e9e0/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)
