mipsDetail

Query to specify a data request from Merit-based Incentive Payment System (MIPS) provider performance information.

Get Started with mipsDetail

If you have already setup CareQuery, run the below code to get started with your first mipsDetail query.

Example:

🔍

Request CD-10 categories and details for all musculoskeletal system and connective tissue diagnoses.

# import package
from care_query.care_query import CareQuery

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

# construct query
query = cq.mipsDetail(npi = [1902211709, 1942658299, 1962493296])

# estimate query size (optional)
estimate = query.estimate() 

# return query sample data (optional)
sample = query.sample() 

# execute query to return results
data = query.execute() 

Query Parameters

The following a parameters are available within the mipsDetail query, including details on the parameter values.

parameterdescriptionoptions
npiNational Provider Identifier (NPI) assigned to the individual providerAny Valid Individual
National Provider Identifier (NPI)
limitNumber of rows returned in the data requestInteger or False
showBinary indicator as to whether you'd like query to be printed
for review upon query creation
True or False

Query Return Data

The mipsDetail query returns the MIPS_TABLE for all providers that meet the criterion specified within the query.

The MIPS_TABLE offers quality score details for all providers specified within the query.

featuredescriptionexample
npiNational Provider Identifier (NPI) assigned to the individual provider1962493296
org_pac_idUnique group ID assigned by PECOS to the group this individual participated in42128548
nameIndividual clinician's full nameallen noorily
sourceMethod by which the clinician achieved scores (“individual”, “group”, “virtual group”, or “apm”); if the source is “apm”, this indicates that the MIPS APM scoring standard was applied for this set of scoresapm
quality_scoreQuality performance category score86.13
interop_scorePromoting Interoperability (PI) performance category score24
improvement_scoreImprovement Activities (IA) performance category score100
mips_score_without_cpbMIPS Final Score without the Complex Patient Bonus (CPB). The CPB is part of the MIPS final score based on the overall medical complexity and social risk for one’s patients treated93.07
mips_scoreFinal Merit-based Incentive Payment System (MIPS) score100
update_dateThe last date in which the MIPS details have been updated2023-01-01

Advanced Query Logic & Recipes

mipsDetail gives users categorical groupings for ease of use, as well as SQL-like capabilities to tactfully specify AND and OR logic, right within the CareQuery API!

🚧

mipsDetail does not allow for nested lists within the query parameters

Please reference the following resources to better understand how to create rockstar queries!