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

# PA vendor directory

> List all PA delegation vendors.



## OpenAPI

````yaml /docs/openapi.client.json get /v1/prior-auth/vendors
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/prior-auth/vendors:
    get:
      tags:
        - prior-auth
      summary: PA vendor directory
      description: List all PA delegation vendors.
      operationId: list_vendors_v1_prior_auth_vendors_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PAVendorResponse'
          description: Successful Response
      security:
        - APIKeyHeader: []
components:
  schemas:
    PAVendorResponse:
      description: PA vendor directory.
      properties:
        total_count:
          default: 0
          title: Total Count
          type: integer
        vendors:
          default: []
          items:
            $ref: '#/components/schemas/PAVendorItem'
          title: Vendors
          type: array
      title: PAVendorResponse
      type: object
    PAVendorItem:
      description: A PA delegation vendor.
      properties:
        phone:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone
        portal_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Portal Url
        service_categories:
          items:
            type: string
          title: Service Categories
          type: array
        vendor_name:
          title: Vendor Name
          type: string
      required:
        - vendor_name
      title: PAVendorItem
      type: object
  securitySchemes:
    APIKeyHeader:
      in: header
      name: X-API-Key
      type: apiKey

````