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.
parameter | description | options |
---|---|---|
npi | National Provider Identifier (NPI) assigned to the individual provider | Any Valid Individual National Provider Identifier (NPI) |
limit | Number of rows returned in the data request | Integer or False |
show | Binary 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.
feature | description | example |
---|---|---|
npi | National Provider Identifier (NPI) assigned to the individual provider | 1962493296 |
org_pac_id | Unique group ID assigned by PECOS to the group this individual participated in | 42128548 |
name | Individual clinician's full name | allen noorily |
source | Method 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 scores | apm |
quality_score | Quality performance category score | 86.13 |
interop_score | Promoting Interoperability (PI) performance category score | 24 |
improvement_score | Improvement Activities (IA) performance category score | 100 |
mips_score_without_cpb | MIPS 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 treated | 93.07 |
mips_score | Final Merit-based Incentive Payment System (MIPS) score | 100 |
update_date | The last date in which the MIPS details have been updated | 2023-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!
Updated about 1 year ago