Skip to contents

[Experimental]

laboratories() allows you to search for information on clinical laboratories including demographics and the type of testing services the facility provides.

Usage

laboratories(
  name = NULL,
  clia = NULL,
  certificate = NULL,
  city = NULL,
  state = NULL,
  zip = NULL,
  active = FALSE,
  tidy = TRUE,
  na.rm = TRUE,
  pivot = TRUE,
  ...
)

Arguments

name

< character > Provider or clinical laboratory's name

clia

< character > 10-character CLIA number

certificate

< character > CLIA certificate type:

  • "waiver"

  • "ppm"

  • "registration"

  • "compliance"

  • "accreditation"

city

< character > City

state

< character > State

zip

< character > Zip code

active

< boolean > // default: FALSE Return only active providers

tidy

< boolean > // default: TRUE Tidy output

na.rm

< boolean > // default: TRUE Remove empty rows and columns

pivot

< boolean > // default: TRUE Pivot output

...

Empty

Value

A tibble containing the search results.

Clinical Laboratory Improvement Amendments (CLIA)

CMS regulates all laboratory testing (except research) performed on humans in the U.S. through the Clinical Laboratory Improvement Amendments (CLIA). In total, CLIA covers approximately 320,000 laboratory entities.

The Division of Clinical Laboratory Improvement & Quality, within the Quality, Safety & Oversight Group, under the Center for Clinical Standards and Quality (CCSQ) has the responsibility for implementing the CLIA Program.

Although all clinical laboratories must be properly certified to receive Medicare or Medicaid payments, CLIA has no direct Medicare or Medicaid program responsibilities.

CLIA Certificates

There are five CLIA certificate types all of which are effective for a period of two years. They are as follows, in order of increasing complexity:

  1. Certificate of Waiver: Issued to a laboratory to perform only waived tests; does not waive the lab from all CLIA requirements. Waived tests are laboratory tests that are simple to perform. Routine inspections are not conducted for waiver labs, although 2% are visited each year to ensure quality laboratory testing.

  2. Certificate for Provider-Performed Microscopy Procedures (PPM): Issued to a laboratory in which a physician, midlevel practitioner or dentist performs limited tests that require microscopic examination. PPM tests are considered moderate complexity. Waived tests can also be performed under this certificate type. There are no routine inspections conducted for PPM labs.

  3. Certificate of Registration: Initially issued to a laboratory that has applied for a Certificate of Compliance or Accreditation, enabling the lab to conduct moderate/high complexity testing until the survey is performed and the laboratory is found to be in CLIA compliance. Includes PPM and waived testing.

  4. Certificate of Compliance: Allows the laboratory to conduct moderate/high complexity testing and is issued after an inspection finds the lab to be in compliance with all applicable CLIA requirements. Includes PPM and waived testing.

  5. Certificate of Accreditation: Exactly the same as the Certificate of Compliance, except that the laboratory must be accredited by one of the following CMS-approved accreditation organizations:

Links:

Update Frequency: Quarterly

Examples

if (FALSE) { # interactive()
laboratories(clia = "11D0265516")
laboratories(certificate = "ppm", city = "Valdosta", state = "GA", active = TRUE)
}