get https://healthcorumnow.com/api/v3/facilities
Scores for Acute Care Facilities, Skilled Nursing Facilities (SNF) and Ambulatory Surgery Centers (ASC)
Endpoint: /v3/facilities
Methods: GET
Parameter | Data Type | Optional/Required | Details |
---|---|---|---|
npi | string | required | The National Provider Identifier (NPI), up to 20 within a single call can be passed in a comma seperated format |
lower_limit | float | optional | Limits the response from our API to the facilities with the quality score above or equal to the limit value |
Response Structure (in JSON format)
Name | Data Type | Details |
---|---|---|
npi | string | The National Provider Identifier (NPI) |
facility_type | string | Facility type (i.e. hospital, nursing home, surgery center) |
overall_quality_score | float | Facility’s overall quality score between 1 and 5 |
cost_efficiency_score | float | Facility’s cost efficiency score between 1 and 5 |
effectiveness_score | float | Facility’s effectiveness score between 1 and 5 |
appropriateness_score | float | Facility’s appropriateness score between 1 and 5 |
Example JSON Response:
{
"data": [
{
"npi": "1003000514",
"facility type": "2",
"quality score": "3.8",
"effectiveness score": "3.9",
"cost efficiency score": "3.0",
"appropriateness score": null
}
]
}