> ## 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.

# Search MPFS fee schedule

> Search the Medicare Physician Fee Schedule by code, description, modifier, or status.



## OpenAPI

````yaml /docs/openapi.client.json get /v1/fee-schedules/mpfs
openapi: 3.1.0
info:
  description: >-
    Client API for RCIntel. Admin ingest, catalog sync, and internal audit
    routes are omitted. See Guides → Which API to use.
  summary: Multi-tenant knowledge API for healthcare revenue cycle management.
  title: Healthcare Knowledge Layer
  version: 0.1.0
servers: []
security: []
tags:
  - description: >-
      Geographic payer policy lookup (national NCD vs MAC LCD vs state). Query
      payer, code, state, plan_type. Each row includes geo_scope and
      document_version.
    name: policies
  - description: >-
      Payer network directory — search payers, check prior auth requirements,
      view filing rules, denial patterns, and appeal levels.
    name: payers
  - description: >-
      Resolve healthcare billing knowledge across the L1-L6 layer stack.
      Includes payment calculation, billing guidance, and per-layer queries.
    name: knowledge
  - description: >-
      CMS Fee Schedule lookups — OPPS (Addendum B / APC), DMEPOS (state-level
      pricing), and Clinical Lab Fee Schedule (CLFS).
    name: fee-schedules
  - description: >-
      NCCI (National Correct Coding Initiative) — dedicated MUE limits, PTP
      bundling edits, add-on code edits, and code pair validation.
    name: ncci
  - description: >-
      Service code intelligence — CPT/HCPCS lookup, RVU data, NCCI edits,
      payment calculation, implant/GUDID search, and service group
      classification.
    name: codes
  - description: >-
      Submit asynchronous AI agent jobs for code research, medical necessity,
      and denial resolution. Poll for results and retrieve reasoning traces.
    name: agents
  - description: >-
      Register and manage healthcare facilities by CCN (Medicare Provider
      Number). Each facility is the root entity for knowledge resolution.
    name: facilities
  - description: >-
      NPI Registry — live search against CMS NPPES API for provider and
      organization National Provider Identifiers.
    name: npi
  - description: >-
      OpenFDA drug product lookup by NDC. Includes product-level fields with
      normalized ingredient and package detail.
    name: drugs
  - description: Health checks, service metadata, and Prometheus metrics.
    name: system
paths:
  /v1/fee-schedules/mpfs:
    get:
      tags:
        - fee-schedules
      summary: Search MPFS fee schedule
      description: >-
        Search the Medicare Physician Fee Schedule by code, description,
        modifier, or status.
      operationId: search_mpfs_schedule_v1_fee_schedules_mpfs_get
      parameters:
        - description: Search by code or description
          in: query
          name: q
          required: false
          schema:
            description: Search by code or description
            minLength: 2
            title: Q
            type: string
        - description: >-
            Calendar year for fee schedule lookups (defaults to current
            supported year when omitted).
          in: query
          name: year
          required: false
          schema:
            default: 2026
            title: Year
            type: integer
        - description: Filter by modifier (e.g. 26, TC)
          in: query
          name: modifier
          required: false
          schema:
            description: Filter by modifier (e.g. 26, TC)
            title: Modifier
            type: string
        - description: Filter by MPFS status code (A, C, I, N, R, T, …)
          in: query
          name: status_code
          required: false
          schema:
            description: Filter by MPFS status code (A, C, I, N, R, T, …)
            title: Status Code
            type: string
        - description: Maximum number of records to return.
          in: query
          name: limit
          required: false
          schema:
            default: 50
            maximum: 200
            minimum: 1
            title: Limit
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MPFSSearchResult'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - APIKeyHeader: []
components:
  schemas:
    MPFSSearchResult:
      properties:
        results:
          items:
            $ref: '#/components/schemas/MPFSFeeScheduleResponse'
          title: Results
          type: array
        total_count:
          default: 0
          title: Total Count
          type: integer
      title: MPFSSearchResult
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    MPFSFeeScheduleResponse:
      properties:
        conversion_factor:
          anyOf:
            - type: number
            - type: 'null'
          title: Conversion Factor
        global_days:
          anyOf:
            - type: string
            - type: 'null'
          title: Global Days
        hcpcs_code:
          title: Hcpcs Code
          type: string
        modifier:
          anyOf:
            - type: string
            - type: 'null'
          title: Modifier
        mp_rvu:
          title: Mp Rvu
          type: number
        pe_rvu_facility:
          title: Pe Rvu Facility
          type: number
        pe_rvu_nonfacility:
          title: Pe Rvu Nonfacility
          type: number
        quarter:
          anyOf:
            - type: integer
            - type: 'null'
          title: Quarter
        short_descriptor:
          anyOf:
            - type: string
            - type: 'null'
          title: Short Descriptor
        source:
          title: Source
          type: string
        status_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Status Code
        total_rvu_facility:
          anyOf:
            - type: number
            - type: 'null'
          title: Total Rvu Facility
        total_rvu_nonfacility:
          anyOf:
            - type: number
            - type: 'null'
          title: Total Rvu Nonfacility
        work_rvu:
          title: Work Rvu
          type: number
        year:
          title: Year
          type: integer
      required:
        - hcpcs_code
        - work_rvu
        - pe_rvu_facility
        - pe_rvu_nonfacility
        - mp_rvu
        - year
        - source
      title: MPFSFeeScheduleResponse
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    APIKeyHeader:
      in: header
      name: X-API-Key
      type: apiKey

````