> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rcintell.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fee schedules

> MPFS, OPPS, DMEPOS, and CLFS lookups — pick the schedule that matches the setting

Facility-aware **estimates** (GPCI, form, POS) use `POST /v1/knowledge/payment-calc`. Use `/v1/fee-schedules` when you already know which CMS schedule applies and want the raw row.

| Setting               | Schedule        | Endpoint                            |
| --------------------- | --------------- | ----------------------------------- |
| Professional / office | MPFS            | `GET /v1/fee-schedules/mpfs/{code}` |
| Hospital outpatient   | OPPS Addendum B | `GET /v1/fee-schedules/opps/{code}` |
| DME                   | DMEPOS          | `GET /v1/fee-schedules/dme/{code}`  |
| Clinical lab          | CLFS            | `GET /v1/fee-schedules/lab/{code}`  |

Search variants (`GET .../mpfs`, `/opps`, `/dme`, `/lab`) take `q` for code or description.

## MPFS

```bash theme={null}
curl "https://api-dev.rcintell.com/v1/fee-schedules/mpfs/99213" \
  -H "X-API-Key: kp_test_..."
```

Returns work / PE / MP RVUs, status indicator, global days, conversion factor. Optional `modifier` (`26`, `TC`) and `year`.

## OPPS / DME / lab

```bash theme={null}
curl "https://api-dev.rcintell.com/v1/fee-schedules/opps/99213" \
  -H "X-API-Key: kp_test_..."

curl "https://api-dev.rcintell.com/v1/fee-schedules/dme/E0110?state=KS" \
  -H "X-API-Key: kp_test_..."

curl "https://api-dev.rcintell.com/v1/fee-schedules/lab/80053" \
  -H "X-API-Key: kp_test_..."
```

DME rates are state-level. Pass `state` when you have it.

## MCP

| Tool                | REST                                                   |
| ------------------- | ------------------------------------------------------ |
| `lookup_mpfs`       | `GET /v1/fee-schedules/mpfs/{code}`                    |
| `lookup_opps`       | `GET /v1/fee-schedules/opps/{code}`                    |
| `lookup_dme`        | `GET /v1/fee-schedules/dme/{code}`                     |
| `lookup_lab_fee`    | `GET /v1/fee-schedules/lab/{code}`                     |
| `calculate_payment` | Facility-aware estimate (`/v1/knowledge/payment-calc`) |
