Skip to main content
POST
/
procedures
/
likelihood
curl --request POST \
--url https://care-navigation-gateway-ccg16t89.wl.gateway.dev/procedures/likelihood \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"npis": [
"1487648176"
],
"conditionCode": "99214",
"codeType": "CPT"
}'
{
"data": {
"1487648176": {
"code": "99214",
"codeType": "CPT",
"likelihood": 0.9
}
},
"meta": {
"requestId": "req_bb354ef268be",
"timestamp": "2025-06-15T23:22:22.395111Z",
"processingTimeMs": 731,
"outOfNetworkRecordsCount": 68
}
}

Authorizations

X-API-Key
string
header
required

Your API key for authentication. Include this header in all requests.

Note: When using the API Gateway (care-navigation-gateway-ccg16t89.wl.gateway.dev), use query parameter authentication instead: ?key=YOUR_API_KEY

Get your API key by reaching out to support@docaroo.com.

Body

application/json
npis
string[]
required

List of National Provider Identifiers (NPIs) to assess

Required array length: 1 - 50 elements

10-digit National Provider Identifier

Example:
["1487648176"]
conditionCode
string
required

Medical billing code to evaluate likelihood for

Example:

"81416"

codeType
enum<string>
default:CPT

Medical billing code standard:

  • CPT: Current Procedural Terminology
  • NDC: National Drug Code
  • HCPCS: Healthcare Common Procedure Coding System
  • ICD: International Classification of Diseases
  • DRG: Diagnosis Related Group (various types)
  • APC: Ambulatory Payment Classification
  • CDT: Current Dental Terminology
Available options:
CPT,
NDC,
HCPCS,
RC,
ICD,
MS-DRG,
R-DRG,
S-DRG,
APS-DRG,
AP-DRG,
APR-DRG,
APC,
LOCAL,
EAPG,
HIPPS,
CDT,
CSTM-ALL
Example:

"CPT"

Response

Successful likelihood assessment

data
object
required

Likelihood data organized by NPI

meta
object
required
I