Base URL

API Gateway: https://care-navigation-gateway-ccg16t89.wl.gateway.dev

Authentication

All API requests require authentication using a query parameter:

https://care-navigation-gateway-ccg16t89.wl.gateway.dev/pricing/in-network?key=your-api-key-here

Keep your API key secure and never expose it in client-side code.

Getting Your API Key

Contact our support team at support@docaroo.com to request API access and receive your API key.

Quick Test

Try this example with real provider NPIs:

curl -X POST "https://care-navigation-gateway-ccg16t89.wl.gateway.dev/pricing/in-network?key=your-api-key-here" \
  -H "Content-Type: application/json" \
  -d '{
    "npis": ["1043566623", "1972767655"],
    "planId": "942404110",
    "conditionCode": "99214",
    "codeType": "CPT"
  }'

API Endpoints

The API provides two main categories of endpoints:

Response Format

All successful responses include:

  • data: Results organized by NPI
  • meta: Request metadata including payer, processing time, and record counts

Example pricing response structure:

{
  "data": {
    "1043566623": [
      {
        "code": "99214",
        "codeType": "CPT",
        "negotiatedType": "negotiated",
        "minRate": 65.87,
        "maxRate": 266.88,
        "avgRate": 147.03,
        "instances": 6
      }
    ]
  },
  "meta": {
    "planId": "942404110",
    "payer": "UNH",
    "requestId": "req_cf7f67790f92",
    "processingTimeMs": 912,
    "inNetworkRecordsCount": 14
  }
}

Explore the interactive documentation below to test each endpoint.