NPPES_TABLE

This table takes the monthly updates to the CMS NPPES database, cleans, normalizes and orients their output into a concise feature set built for consumption.

Queries that source from NPPES_TABLE table

What is in the NPPES_TABLE table?

Results are returned as a json, pySpark DataFrame, or pandas DataFrame (default).

featuredescriptionexample
npiNational Provider Identifier (NPI) of the individual/organizational provider registered with NPPES.1306587324
nameFull name or organizational name of the individual/organizational provider registered with NPPES.cristina papari
entity_typeIndicator of whether the corresponding provider is an individual or organization.individual
genderGender of the individual provider.f
credentialMedical credential of the individual provider.md
primary_taxonomy_codePrimary taxonomy code of the individual/organizational provider.207Q00000X
secondary_taxonomy_codeSecondary taxonomy code of the individual/organizational provider.235Z00000X
addressPrimary address of the individual/organizational provider, as reported to NPPES.200 hawkins dr
cityCity, State of the primary address of the individual/organizational provider, as reported to NPPES.iowa city
stateState of the primary address of the individual/organizational provider, as reported to NPPES.IA
zipZip code of the primary address of the individual/organizational provider, as reported to NPPES.52242
phonePrimary phone number of the individual/organizational provider, as reported to NPPES.3193847507
faxPrimary fax number of the individual/organizational provider, as reported to NPPES.3193847822
sole_proprietorBinary indicator (yes, no) as to whether the provider is registered as a sole proprietor with NPPES.No
org_subpartBinary indicator (yes, no) as to whether the provider is registered as an organizational subpart with NPPES.No
org_lbnLegal business name of the parent organization associated with an NPI.consumerhealth, inc.
update_dateThe last date in which NPPES table has been updated2023-09-01

Helper Function within the CareQuery API to help understand the underlying NPPES_TABLE dataset.

# import package
from care_query.care_query import CareQuery

# instantiate and connect
cq = CareQuery(email = "your-email", 
               token = "your-api-token")

# return details 
print(cq.glossary.table_detail('NPPES_TABLE'))