get https://healthcorumnow.com/api/v3/providers
Scores for individual physicians
Endpoint: /v3/providers
Methods: GET
Parameter | Data Type | Required/Optional | Description |
---|---|---|---|
npi | string | required | The National Provider Identifier (NPI), up to 20 within a single call can be passed in a comma separated format |
lower_limit | float | optional | Limits the response from our API to the providers with the quality score above or equal to the limit value |
Response Structure (in JSON format)
Name | Date Type | Description |
---|---|---|
npi | string | The National Provider Identifier (NPI) |
overall_quality_score | float | Provider’s overall quality score between 1 and 5 |
cost_efficiency_score | float | Provider’s cost efficiency score between 1 and 5 |
effectiveness_score | float | Provider’s effectiveness score between 1 and 5 |
appropriateness_score | float | Provider’s appropriateness score between 1 and 5 |
Example JSON Response:
{
"data": [
{
"npi": "1609076355",
"quality score": "3.0",
"effectiveness score": "2.0",
"cost efficiency score": "3.0",
"appropriateness score": "4.0"
}
]
}`