Provider Location Procedure Pricing

Overview

Description: Search for a price estimate for a specific procedure, from a specific provider at a specific location, with a given insurance plan.

Endpoint: /v1/pricing/providers/<npi>/procedures/<procedure_uuid>/locations/<loc_uuid>

Status: Live

Methods: GET

Example use-case: Given an insurance, identify the expected price of a particular procedure from a specific provider at a known facility.

Request Parameters

ParameterTypeDescriptionExample
plan_iduuidExact insurance plan ID for negotiated rate with provider.
(can be retrieved from insurances endpoint)
81ba3a1a-05a9-48d9-b9b2-cb8f9eafc902

Example Request

curl -X GET \
  'https://api.ribbonhealth.com/v1/pricing/providers/1801951090/procedures/7ad7c4ef-baf9-4789-8e58-51d2308a1143/locations/2711fae0-040c-4df2-98b1-513cbbcba1d4?plan_id=81ba3a1a-05a9-48d9-b9b2-cb8f9eafc902' \
  -H 'authorization: Token <your_token>'
{
    "parameters": {
        "insurance": {
            "uuid": "ef704f14-c906-4857-acd4-d811f1394c32",
            "display": "Aetna"
        }
    },
    "data": {
        "costs": {
            "min": 239,
            "avg": 520,
            "max": 714
        }
    }
}