Skip to contents

Eligibility to order and refer within Medicare

Usage

order_refer(
  npi = NULL,
  first = NULL,
  last = NULL,
  ptb = NULL,
  dme = NULL,
  hha = NULL,
  pmd = NULL,
  hospice = NULL,
  count = FALSE
)

Arguments

npi

<int> National Provider Identifier

first, last

<chr> Individual provider's first/last name

ptb, dme, hha, pmd, hospice

<lgl> Eligibility for:

  • ptb: Medicare Part B

  • dme: Durable Medical Equipment

  • hha: Home Health Agency

  • pmd: Power Mobility Devices

  • hospice: Hospice

count

<lgl> Return the total row count

Value

A tibble containing the search results.

Criteria

  • Individual NPI

  • Medicare enrollment with Approved or Opt-Out status

  • Eligible specialty type

Types

  • Ordering: can order non-physician services for patients.

  • Referring/Certifying: can request items/services Medicare may reimburse.

  • Opt-Out: can enroll solely to order and refer.

Services

  • Medicare Part B: Clinical Labs, Imaging

  • Medicare Part A: Home Health

  • DMEPOS: Durable medical equipment, prosthetics, orthotics, & supplies

Examples

order_refer(count = TRUE)
#>  order_refer | 2,015,687 rows | 404 pages

order_refer(first = "Jennifer", last = "Smith")
#>  order_refer returned 135 results
#> # A tibble: 135 × 8
#>           npi first    last  ptb_ind dme_ind hha_ind pmd_ind hsp_ind
#>         <int> <chr>    <chr>   <int>   <int>   <int>   <int>   <int>
#>  1 1750494886 JENNIFER SMITH       1       1       1       0       1
#>  2 1811218712 JENNIFER SMITH       1       1       1       1       1
#>  3 1134344286 JENNIFER SMITH       1       1       1       1       1
#>  4 1215468897 JENNIFER SMITH       1       1       1       1       0
#>  5 1154778181 JENNIFER SMITH       1       1       1       1       1
#>  6 1033811211 JENNIFER SMITH       1       1       1       1       1
#>  7 1588849350 JENNIFER SMITH       1       1       1       1       0
#>  8 1396366811 JENNIFER SMITH       1       1       1       1       1
#>  9 1790243723 JENNIFER SMITH       1       1       1       1       0
#> 10 1407630973 JENNIFER SMITH       1       1       0       0       0
#> # ℹ 125 more rows