This website allows users to search public .CSV files from the federal Medicare Electronic Health Record (EHR) Incentive Program to find the EHR systems in use by healthcare providers. The the data from the Medicare EHR Incentive Program only identifies healthcare providers by their NPI (National Provider Identifier) numbers, and the only reliable database of NPI numbers is the National Plan and Provider Enumeration System. The NPPES does not allow for CORS (Cross-Origin Resource Sharing), so I use JSONP to access Bloom API, which does allow for the bypassing of same-origin policy by using JSONP with callback functionality. The Bloom API then uses the search criteria I provide to access the NPPES data. My site then uses the wonderful Papaparse to parse the .CSV files into JSON format. The JSON object is then searched and compared to the results data from the NPPES to find the EHR systems in use by the corresponding NPI numbers, and a dynamic table is created to display the results.